diff options
Diffstat (limited to 'applications/luci-app-coovachilli')
47 files changed, 27182 insertions, 2025 deletions
diff --git a/applications/luci-app-coovachilli/Makefile b/applications/luci-app-coovachilli/Makefile index 1f3a0fc0ea..b579bd9749 100644 --- a/applications/luci-app-coovachilli/Makefile +++ b/applications/luci-app-coovachilli/Makefile @@ -7,7 +7,12 @@ 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>, \ + Paul Donald <newtwen+github@gmail.com> include ../../luci.mk diff --git a/applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js b/applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js new file mode 100644 index 0000000000..e7c077d464 --- /dev/null +++ b/applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js @@ -0,0 +1,490 @@ +'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(); + } +}); diff --git a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli.lua b/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli.lua deleted file mode 100644 index 7a2056c119..0000000000 --- a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli.lua +++ /dev/null @@ -1,19 +0,0 @@ --- 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 diff --git a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_auth.lua b/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_auth.lua deleted file mode 100644 index 4123532f41..0000000000 --- a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_auth.lua +++ /dev/null @@ -1,64 +0,0 @@ --- 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 diff --git a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_network.lua b/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_network.lua deleted file mode 100644 index 025bc1795b..0000000000 --- a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_network.lua +++ /dev/null @@ -1,56 +0,0 @@ --- 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 diff --git a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_radius.lua b/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_radius.lua deleted file mode 100644 index e2cbe495e0..0000000000 --- a/applications/luci-app-coovachilli/luasrc/model/cbi/coovachilli_radius.lua +++ /dev/null @@ -1,55 +0,0 @@ --- 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 diff --git a/applications/luci-app-coovachilli/po/ar/coovachilli.po b/applications/luci-app-coovachilli/po/ar/coovachilli.po index 04e68de2bc..ad011faa69 100644 --- a/applications/luci-app-coovachilli/po/ar/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ar/coovachilli.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2021-03-10 04:35+0000\n" -"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" +"PO-Revision-Date: 2024-07-12 15:04+0000\n" +"Last-Translator: Rex_sa <rex.sa@pm.me>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/ar/>\n" "Language: ar\n" @@ -13,28 +13,696 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.5.2-dev\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 "كوفاتشيلي 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" +msgstr "منح UCI حق الوصول إلى luci - app - coovachilli" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136 +msgid "Homepage" +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: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 "تكوين شبكة" +msgstr "تكوين الشبكة" + +#: 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/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26 +#: 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" +msgstr "اعدادات الراديس" + +#: 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/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36 +#: 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" @@ -66,9 +734,6 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -114,15 +779,9 @@ msgstr "مصادقة UAM و MAC" #~ 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 "" @@ -170,9 +829,6 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -214,9 +870,6 @@ msgstr "مصادقة UAM و MAC" #~ "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" @@ -224,9 +877,6 @@ msgstr "مصادقة UAM و MAC" #~ "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" @@ -237,24 +887,12 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -298,18 +936,9 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -387,9 +1016,6 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -408,15 +1034,9 @@ msgstr "مصادقة UAM و MAC" #~ 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)" @@ -424,9 +1044,6 @@ msgstr "مصادقة UAM و MAC" #~ "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 "" @@ -461,19 +1078,9 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -526,15 +1133,9 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -566,9 +1167,6 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -579,9 +1177,6 @@ msgstr "مصادقة UAM و MAC" #~ "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 "" @@ -606,9 +1201,6 @@ msgstr "مصادقة UAM و MAC" #~ 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" @@ -637,9 +1229,6 @@ msgstr "مصادقة UAM و MAC" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/bg/coovachilli.po b/applications/luci-app-coovachilli/po/bg/coovachilli.po index 5082a0d088..53e57a494c 100644 --- a/applications/luci-app-coovachilli/po/bg/coovachilli.po +++ b/applications/luci-app-coovachilli/po/bg/coovachilli.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2024-01-14 10:54+0000\n" +"PO-Revision-Date: 2024-10-17 17:10+0000\n" "Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n" "Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/bg/>\n" @@ -12,28 +12,696 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.4-dev\n" +"X-Generator: Weblate 5.8-rc\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" @@ -65,9 +733,6 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM и MAC автентификация" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM и MAC автентификация" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM и MAC автентификация" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM и MAC автентификация" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM и MAC автентификация" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM и MAC автентификация" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM и MAC автентификация" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM и MAC автентификация" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/bn_BD/coovachilli.po b/applications/luci-app-coovachilli/po/bn_BD/coovachilli.po index 57b7971dc1..e12e45414d 100644 --- a/applications/luci-app-coovachilli/po/bn_BD/coovachilli.po +++ b/applications/luci-app-coovachilli/po/bn_BD/coovachilli.po @@ -14,26 +14,694 @@ 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 "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" @@ -65,9 +733,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM এবং MAC অথেনটিকেশন" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/ca/coovachilli.po b/applications/luci-app-coovachilli/po/ca/coovachilli.po index 500efc2c8a..35390f63e2 100644 --- a/applications/luci-app-coovachilli/po/ca/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ca/coovachilli.po @@ -15,26 +15,697 @@ msgstr "" "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" @@ -65,9 +736,6 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -114,16 +782,10 @@ msgstr "Autenticació UAM i MAC" #~ 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 "" @@ -171,9 +833,6 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -216,9 +875,6 @@ msgstr "Autenticació UAM i MAC" #~ "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" @@ -226,9 +882,6 @@ msgstr "Autenticació UAM i MAC" #~ "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" @@ -239,26 +892,12 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -304,18 +943,9 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -395,9 +1025,6 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -416,17 +1043,11 @@ msgstr "Autenticació UAM i MAC" #~ 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)" @@ -434,9 +1055,6 @@ msgstr "Autenticació UAM i MAC" #~ "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 "" @@ -472,19 +1090,9 @@ msgstr "Autenticació UAM i MAC" #~ 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ó" @@ -539,15 +1147,9 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -580,9 +1182,6 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -593,9 +1192,6 @@ msgstr "Autenticació UAM i MAC" #~ "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 "" @@ -620,9 +1216,6 @@ msgstr "Autenticació UAM i MAC" #~ 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" @@ -651,9 +1244,6 @@ msgstr "Autenticació UAM i MAC" #~ msgid "Password" #~ msgstr "Contrasenya" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Contrasenya utilitzada quan es realitza autenticació MAC" - #~ msgid "Suffix" #~ msgstr "Sufix" diff --git a/applications/luci-app-coovachilli/po/cs/coovachilli.po b/applications/luci-app-coovachilli/po/cs/coovachilli.po index 1dec758220..18fd24b8fc 100644 --- a/applications/luci-app-coovachilli/po/cs/coovachilli.po +++ b/applications/luci-app-coovachilli/po/cs/coovachilli.po @@ -14,26 +14,693 @@ msgstr "" "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" @@ -82,12 +749,6 @@ msgstr "UAM a MAC ověřování" #~ 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)" @@ -121,9 +782,6 @@ msgstr "UAM a MAC ověřování" #~ 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" @@ -133,25 +791,9 @@ msgstr "UAM a MAC ověřování" #~ 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" @@ -198,9 +840,6 @@ msgstr "UAM a MAC ověřování" #~ 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" @@ -210,17 +849,11 @@ msgstr "UAM a MAC ověřování" #~ 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 "" @@ -249,13 +882,6 @@ msgstr "UAM a MAC ověřování" #~ 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" @@ -280,10 +906,6 @@ msgstr "UAM a MAC ověřování" #~ 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ů" @@ -303,15 +925,9 @@ msgstr "UAM a MAC ověřování" #~ 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 "" @@ -326,9 +942,6 @@ msgstr "UAM a MAC ověřování" #~ 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" diff --git a/applications/luci-app-coovachilli/po/da/coovachilli.po b/applications/luci-app-coovachilli/po/da/coovachilli.po index 20a04c4be4..df814dcde8 100644 --- a/applications/luci-app-coovachilli/po/da/coovachilli.po +++ b/applications/luci-app-coovachilli/po/da/coovachilli.po @@ -14,26 +14,694 @@ 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 "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" @@ -65,9 +733,6 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM- og MAC-godkendelse" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM- og MAC-godkendelse" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM- og MAC-godkendelse" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM- og MAC-godkendelse" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM- og MAC-godkendelse" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM- og MAC-godkendelse" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM- og MAC-godkendelse" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM- og MAC-godkendelse" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/de/coovachilli.po b/applications/luci-app-coovachilli/po/de/coovachilli.po index 9817314473..b7e22e796e 100644 --- a/applications/luci-app-coovachilli/po/de/coovachilli.po +++ b/applications/luci-app-coovachilli/po/de/coovachilli.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2020-07-11 21:29+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2024-10-19 18:21+0000\n" +"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/de/>\n" "Language: de\n" @@ -12,28 +12,709 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.8-rc\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 "0 bedeutet unbegrenzt" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Nur 802.1Q" + +#: 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 "Eine spezifische URL, die in WISPr XML LoginURL angegeben werden soll" + +#: 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 +msgid "Admin user" +msgstr "Admin-Nutzer" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236 +msgid "Allow Local MAC" +msgstr "Lokale MAC erlauben" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Alle Sitzungen erlauben, wenn RADIUS nicht verfügbar ist" + +#: 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 "Erlauben Sie dem Client, jede IP-Adresse zu verwenden" + +#: 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 "Erlaubt" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237 +msgid "Allowed MACs" +msgstr "Erlaubte MACs" + +#: 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 "Jeder DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Jede IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398 +msgid "Authentication port" +msgstr "Authentifizierungs-Port" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391 +msgid "Auxiliary server" +msgstr "Hilfsserver" + +#: 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 "COA-Port" + +#: 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" @@ -64,12 +745,8 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -124,9 +801,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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 "" @@ -134,10 +808,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ "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" #~ msgstr "Script, dass nach erfolgreicher tun - Verbindung ausgeführt wird" @@ -205,10 +875,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -256,9 +922,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ "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 " @@ -268,10 +931,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ "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 " #~ "up chilli configurations and establish a device \"system\" session" @@ -282,30 +941,14 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -355,22 +998,10 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -476,20 +1107,10 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -529,18 +1150,10 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -579,10 +1192,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -615,10 +1224,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ 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" @@ -655,10 +1260,6 @@ msgstr "UAM- und MAC-Authentifizierung" #~ msgstr "Netzwerk/TUN Konfiguration" #, fuzzy -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Netzwerk/TUN Konfiguration" - -#, fuzzy #~ msgid "Suffix" #~ msgstr "Netzwerk/TUN Konfiguration" diff --git a/applications/luci-app-coovachilli/po/el/coovachilli.po b/applications/luci-app-coovachilli/po/el/coovachilli.po index 4f0b877332..880e45b965 100644 --- a/applications/luci-app-coovachilli/po/el/coovachilli.po +++ b/applications/luci-app-coovachilli/po/el/coovachilli.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-12-01 16:16+0000\n" -"Last-Translator: Marios Koutsoukis <marioskoutsoukis2006@gmail.com>\n" +"PO-Revision-Date: 2024-11-09 08:59+0000\n" +"Last-Translator: Mac Mac <nofxmac@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/el/>\n" "Language: el\n" @@ -12,43 +12,695 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 5.8.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 "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 "Όνομα τοποθεσίας" diff --git a/applications/luci-app-coovachilli/po/en/coovachilli.po b/applications/luci-app-coovachilli/po/en/coovachilli.po index 3fc0908647..c8bf42c5c1 100644 --- a/applications/luci-app-coovachilli/po/en/coovachilli.po +++ b/applications/luci-app-coovachilli/po/en/coovachilli.po @@ -14,26 +14,694 @@ 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" @@ -65,9 +733,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM- ja MAC-todennus" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/es/coovachilli.po b/applications/luci-app-coovachilli/po/es/coovachilli.po index c4332409af..1d1d01d5f7 100644 --- a/applications/luci-app-coovachilli/po/es/coovachilli.po +++ b/applications/luci-app-coovachilli/po/es/coovachilli.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2024-10-17 17:10+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/es/>\n" @@ -12,28 +12,714 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.8-rc\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 "0 es ilimitado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Solo 802.1Q" + +#: 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 "" +"La URL específica que se debe proporcionar en el archivo XML LoginURL WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403 +msgid "Accounting port" +msgstr "Puerto de contabilización" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451 +msgid "Accounting update" +msgstr "Actualización de contabilización" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443 +msgid "Admin password" +msgstr "Contraseña de administrador" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441 +msgid "Admin user" +msgstr "Usuario de administrador" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236 +msgid "Allow Local MAC" +msgstr "Permitir MAC local" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Permitir todas las sesiones cuando RADIUS no esté disponible" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "Permitir todo, excepto RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "Permitir al cliente utilizar cualquier dirección IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "Permitir que usuarios no autenticados accedan a cualquier DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161 +msgid "Allowed" +msgstr "Permitido" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237 +msgid "Allowed MACs" +msgstr "MACs permitidas" + +#: 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 "" +"Responde siempre a DHCP a la IP de difusión, cuando no hay retransmisión." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "Cualquier DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Cualquier IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398 +msgid "Authentication port" +msgstr "Puerto de autenticación" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391 +msgid "Auxiliary server" +msgstr "Servidor auxiliar" + +#: 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 "" +"Ser estricto con la autenticación MAC (no responda DHCP hasta que recibamos " +"la respuesta RADIUS)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371 +msgid "Broadcast Answer" +msgstr "Respuesta de difusión" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454 +msgid "COA Port" +msgstr "Puerto COA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "COA sin verificación IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "Chilli XML" + +#: 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 "" +"ChilliSpot intentará autenticar a todos los usuarios únicamente basándose en " +"su dirección MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328 +msgid "Connection down script" +msgstr "Script de conexión caída" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Connection up script" +msgstr "Script de conexión establecida" + +#: 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 "Coova Chilli" #: 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 "Fin de DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "IP de la puerta de enlace DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "Puerto de la puerta de enlace DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "Inicio de DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338 +msgid "DHCP interface" +msgstr "Interfaz DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306 +msgid "DNS Auxiliary" +msgstr "DNS Auxiliar" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "DNS primario" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83 +msgid "Debug" +msgstr "Depuración" + +#: 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 "" +"Ancho de banda máximo de bajada predeterminado establecido en bps, igual que " +"WISPr-Bandwidth-Max-Down." + +#: 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 "" +"Ancho de banda máximo de subida predeterminado establecido en bps, igual que " +"WISPr-Bandwidth-Max-Up." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173 +msgid "Default idle timeout" +msgstr "Tiempo de espera en inactividad predeterminado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178 +msgid "Default interim interval" +msgstr "Intervalo intermedio predeterminado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168 +msgid "Default session timeout" +msgstr "Tiempo de espera de sesión predeterminado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234 +msgid "Deny MAC authentication" +msgstr "Denegar autenticación MAC" + +#: 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 "" +"Denegar acceso (incluso UAM) a direcciones MAC Access-Reject proporcionadas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "Directory where embedded local web content is placed" +msgstr "Directorio donde se coloca el contenido web local incrustado" + +#: 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 "" +"No verificar la dirección IP de origen de las solicitudes de desconexión " +"RADIUS" + +#: 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 realizar ningún WISPr XML, asumir que el backend lo está haciendo en su " +"lugar" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "Do not offer WISPr 1.0 XML" +msgstr "No ofrecer WISPr 1.0 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "No ofrecer WISPr 2.0 XML" + +#: 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 regresar al servidor UAM en caso de éxito de inicio de sesión, solo " +"redirigir a la URL original" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311 +msgid "Domain" +msgstr "Dominio" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152 +msgid "Domain suffixes" +msgstr "Sufijos de dominio" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292 +msgid "Dynamic IP" +msgstr "IP dinámica" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Activar EAPOL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75 +msgid "Enabled" +msgstr "Activado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "Executable to run as a CGI type program" +msgstr "Ejecutable para funcionar como un programa de tipo CGI" + +#: 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 "" +"Ejecutado después de que una sesión ha pasado de estado autorizado a no " +"autorizado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Executed after a session is authorized" +msgstr "Ejecutado después de que una sesión es autorizada" + +#: 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 "Ejecutado después de que la interfaz de red TUN/TAP ha sido activada" + +#: 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 "Ejecutado después de que la interfaz de red TUN/TAP ha sido desactivada" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65 +msgid "General" +msgstr "General" + #: 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 "Página de inicio" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "IEEE 802.1x authentication" +msgstr "Autenticación IEEE 802.1x" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "Dirección IP desde la cual se aceptan solicitudes RADIUS" + +#: 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 "Modo IPv6" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124 +msgid "Ignore Success" +msgstr "Ignorar éxito" + +#: 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 "" +"Inspecciona paquetes DNS y descarta respuestas con cualquier registro que no " +"sea A, CNAME, SOA o MX" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "Lease time" +msgstr "Tiempo de asignación" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140 +msgid "Listen" +msgstr "Escucha" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213 +msgid "Local users" +msgstr "Usuarios locales" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223 +msgid "Location Name" +msgstr "Nombre de la ubicación" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156 +msgid "Logout IP" +msgstr "IP de cierre de sesión" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "Autenticación MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "Contraseña MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "Re-autenticación MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "Sufijo MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279 +msgid "Max clients" +msgstr "Máximo de clientes" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183 +msgid "Max download bandwidth" +msgstr "Máximo ancho de banda de descarga" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188 +msgid "Max upload bandwidth" +msgstr "Máximo ancho de banda de carga" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423 +msgid "NAS ID" +msgstr "ID de NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197 +msgid "NAS IP" +msgstr "IP de NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "NAS MAC" +msgstr "MAC de NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423 +msgid "NAS-Identifier" +msgstr "Identificador-NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "Tipo de Puerto NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Net" +msgstr "Red" + +#: 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 "Dirección de red de la interfaz de enlace ascendente" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125 +msgid "No WISPr" +msgstr "Sin WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "Sin WISPr 1 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "Sin WISPr 2 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Autenticación Open ID" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "Opciones para Proxy RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "Opciones para TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "URL original" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "Password used when performing MAC authentication" +msgstr "Contraseña utilizada al realizar autenticación MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "Port" +msgstr "Puerto" + +#: 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 "Proxy post-autenticación" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387 +msgid "Primary server" +msgstr "Servidor primario" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "Program in inetd style to handle all uam requests" +msgstr "Programa en estilo inetd para manejar todas las solicitudes UAM" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "Proxy Client" +msgstr "Cliente proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466 +msgid "Proxy Listen" +msgstr "Escucha del Proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472 +msgid "Proxy Port" +msgstr "Puerto del proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482 +msgid "Proxy Secret" +msgstr "Clave del Proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68 +msgid "RADIUS" +msgstr "RADIUS" + +#: 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 "" +"Reautenticar basado en la dirección MAC para cada redirección inicial de URL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85 +msgid "Re-read configuration file at this interval" +msgstr "Volver a leer el archivo de configuración en este intervalo" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85 +msgid "Re-read interval" +msgstr "Intervalo para volver a leer" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413 +msgid "Retries" +msgstr "Reintentos" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418 +msgid "Retry seconds" +msgstr "Segundos de reintento" + +#: 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 "Devuelve el llamado Chilli XML junto con WISPr XML." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193 +msgid "SSID" +msgstr "SSID" + +#: 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 "Clave" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Send CoovaChilli-OriginalURL in Access-Request" +msgstr "Enviar CoovaChilli-OriginalURL en Access-Request" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382 +msgid "Send IP" +msgstr "Enviar IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117 +msgid "Server" +msgstr "Servidor" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62 +msgid "Settings" +msgstr "Ajustes" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334 +msgid "Special options for DHCP" +msgstr "Opciones especiales para DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "Opciones especiales para autenticación MAC" + +#: 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 "" +"Especifica un grupo de direcciones IP dinámicas. Si se omite esta opción, se " +"utiliza la dirección de red especificada por la opción Net" + +#: 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 "" +"Especifica un grupo de direcciones IP estáticas. Con la asignación de " +"direcciones estáticas, la dirección IP del cliente puede ser especificada " +"por el servidor RADIUS." + +#: 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 "IP estática" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131 +msgid "Strict DNS" +msgstr "DNS Estricto" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233 +msgid "Strict MAC authentication" +msgstr "Autenticación MAC estricta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "Support 802.1Q VLAN tagged traffic only" +msgstr "Admitir solo tráfico etiquetado VLAN 802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "Support for 802.1Q/VLAN network" +msgstr "Admitir red 802.1Q/VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448 +msgid "Swap Octets" +msgstr "Intercambiar octetos" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448 +msgid "Swap the meaning of input and output octets" +msgstr "Intercambiar el significado de octetos de entrada y salida" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88 +msgid "Syslog facility" +msgstr "Facilidades de Syslog" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274 +msgid "TCP MSS" +msgstr "TCP MSS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "Ventana TCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "TCP port to bind to for authenticating clients" +msgstr "Puerto TCP a enlazar para autenticar clientes" + +#: 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 "Puerto TCP a enlazar para servir solo contenido incrustado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266 +msgid "TUN device" +msgstr "Dispositivo TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284 +msgid "TX Q length" +msgstr "Longitud de la cola de transmisión" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408 +msgid "Timeout" +msgstr "Tiempo de espera" + +#: 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 "Puerto UDP para escuchar y aceptar solicitudes RADIUS" + +#: 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 "Puerto UDP para escuchar y aceptar solicitudes de desconexión RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "UI" +msgstr "Interfaz de usuario" + +#: 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 de inicio a la cual redirigir a los usuarios no 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 del servidor web a utilizar para autenticar a los 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 "Dirección IP única del NAS (nas-ip-address)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "Unique MAC address of the NAS (called-station-id)" +msgstr "Dirección MAC única del NAS (called-station-id)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113 +msgid "Universal access method" +msgstr "Método de acceso universal" + +#: 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 "Usar IPv6" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133 +msgid "Use status file" +msgstr "Usar archivo de estado" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195 +msgid "VLAN" +msgstr "VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428 +msgid "WISPr Location ID" +msgstr "ID de ubicación WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432 +msgid "WISPr Location Name" +msgstr "Nombre de la Ubicación WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165 +msgid "WISPr Login" +msgstr "Inicio de sesión WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "Invitados WPA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60 +msgid "access controller for WLAN." +msgstr "Controlador de acceso para WLAN." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "in seconds" +msgstr "en segundos" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148 +msgid "iport" +msgstr "iport" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260 +msgid "only" +msgstr "solo" + +#: 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 "Pasado al servidor UAM en la URL de redirección inicial" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219 +msgid "port" +msgstr "puerto" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "www binary" +msgstr "binario www" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "directorio www" + #~ msgid "General configuration" #~ msgstr "Configuración General" @@ -64,9 +750,6 @@ msgstr "Autenticación UAM y MAC" #~ 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" @@ -112,11 +795,5 @@ msgstr "Autenticación UAM y MAC" #~ 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" diff --git a/applications/luci-app-coovachilli/po/fi/coovachilli.po b/applications/luci-app-coovachilli/po/fi/coovachilli.po index b1b4c99c64..ed3bfc7ad2 100644 --- a/applications/luci-app-coovachilli/po/fi/coovachilli.po +++ b/applications/luci-app-coovachilli/po/fi/coovachilli.po @@ -14,26 +14,694 @@ msgstr "" "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" @@ -65,9 +733,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM- ja MAC-todennus" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM- ja MAC-todennus" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM- ja MAC-todennus" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/fr/coovachilli.po b/applications/luci-app-coovachilli/po/fr/coovachilli.po index de94a7c346..907d446f69 100644 --- a/applications/luci-app-coovachilli/po/fr/coovachilli.po +++ b/applications/luci-app-coovachilli/po/fr/coovachilli.po @@ -14,22 +14,680 @@ 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 "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 "" diff --git a/applications/luci-app-coovachilli/po/ga/coovachilli.po b/applications/luci-app-coovachilli/po/ga/coovachilli.po new file mode 100644 index 0000000000..90d02c728a --- /dev/null +++ b/applications/luci-app-coovachilli/po/ga/coovachilli.po @@ -0,0 +1,1257 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n" +"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscoovachilli/ga/>\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" +"n>6 && n<11) ? 3 : 4;\n" +"X-Generator: Weblate 5.8-rc\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 "Ciallaíonn 0 gan teorainn" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "802.1Q amháin" + +#: 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 "URL sonrach le tabhairt i LoginURL XML WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403 +msgid "Accounting port" +msgstr "Calafort cuntasaíochta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451 +msgid "Accounting update" +msgstr "Nuashonrú cuntasaíochta" + +#: 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 "Ceadaigh MAC Logánta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Ceadaigh gach seisiún nuair nach bhfuil RADIUS ar fáil" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "Ceadaigh gach, RADIUS as láthair" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "Lig don chliant aon Seoladh IP a úsáid" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "Ceadaigh rochtain d'úsáideoirí unauthenticated ar aon DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161 +msgid "Allowed" +msgstr "Ceadaithe" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237 +msgid "Allowed MACs" +msgstr "MACanna Ceadaithe" + +#: 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 "" +"Freagair DHCP i gcónaí don IP craolta, nuair nach bhfuil aon athsheachadán " +"ann." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "Aon DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Aon IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398 +msgid "Authentication port" +msgstr "Port fíordheimhnithe" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391 +msgid "Auxiliary server" +msgstr "Freastalaí cúnta" + +#: 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 "" +"Bí dian faoi MAC Auth (gan freagra DHCP go dtí go bhfaighimid freagra RADIUS)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371 +msgid "Broadcast Answer" +msgstr "Freagra Craolta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454 +msgid "COA Port" +msgstr "Calafort COA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "COA aon seiceáil IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "Chilli XML" + +#: 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 "" +"Déanfaidh ChilliSpot iarracht gach úsáideoir a fhíordheimhniú bunaithe ar a " +"seoladh mac amháin" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328 +msgid "Connection down script" +msgstr "Nasc síos script" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Connection up script" +msgstr "Nasc suas script" + +#: 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 "Coova Chilli" + +#: 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 "Deireadh DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "IP Geata DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "Port Geata DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "Tús DHCP" + +#: 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 "Cúntóir DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "DNS Bunscoile" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83 +msgid "Debug" +msgstr "Dífhabhtú" + +#: 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 "" +"Bandaleithead réamhshocraithe max síos atá leagtha síos i bps, mar an " +"gcéanna le WISPr-Bandaleithead-Max-Down." + +#: 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 "" +"Uasmhéid bandaleithead réamhshocraithe socraithe i bps, mar an gcéanna le " +"WISPr-Bandaleithead-Max-Up." + +#: 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 "Fíordheimhniú MAC a dhiúltú" + +#: 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 "Rochtain a dhiúltú (fiú UAM) ar sheoltaí MAC a thugtar Access-Reject" + +#: 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 "Ná seiceáil seoladh IP foinseach na n-iarratas dícheangail RADIUS" + +#: 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 "Ná tairg WISPr 1.0 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "Ná tairg WISPr 2.0 XML" + +#: 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 "Fearann" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152 +msgid "Domain suffixes" +msgstr "Iarmhíreanna fearainn" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292 +msgid "Dynamic IP" +msgstr "IP Dinimiciúil" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Cumasaigh EAPOL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75 +msgid "Enabled" +msgstr "Cumasaithe" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "Executable to run as a CGI type program" +msgstr "Inrite le rith mar ríomhchlár de chineál CGI" + +#: 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 "" +"Arna fhorghníomhú tar éis seisiún a bhogadh ó stát údaraithe go " +"neamhúdaraithe" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Executed after a session is authorized" +msgstr "Forghníomhaíodh é tar éis seisiún a údarú" + +#: 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 "Arna fhorghníomhú tar éis an comhéadan líonra TUN/TAP a thabhairt suas" + +#: 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 "Arna fhorghníomhú tar éis an comhéadan líonra TUN/TAP a thógáil síos" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65 +msgid "General" +msgstr "Ginearálta" + +#: 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/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136 +msgid "Homepage" +msgstr "Leathanach baile" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "IEEE 802.1x authentication" +msgstr "Fíordheimhniú IEEE 802.1x" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "Seoladh IP óna nglactar le hiarratais RADIUS" + +#: 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 "Mód IPv6" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124 +msgid "Ignore Success" +msgstr "Déan neamhaird de rath" + +#: 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 "" +"Iniúchadh paicéid DNS agus freagraí titim le haon taifid neamh- A, CNAME, " +"SOA, nó MX" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "Lease time" +msgstr "Am léasa" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140 +msgid "Listen" +msgstr "Éist" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213 +msgid "Local users" +msgstr "Úsáideoirí áitiúla" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223 +msgid "Location Name" +msgstr "Ainm an tSuímh" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156 +msgid "Logout IP" +msgstr "IP logála amach" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "Fíordheimhniú MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "Pasfhocal MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "Ath-fhíordheimhniú MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "Iarmhír MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279 +msgid "Max clients" +msgstr "Cliaint uasta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183 +msgid "Max download bandwidth" +msgstr "Bandaleithead íoslódála uasta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188 +msgid "Max upload bandwidth" +msgstr "Bandaleithead uasluchtaithe" + +#: 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 "Aitheantóir SAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "NAS-Port-Cineál" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Net" +msgstr "Glan" + +#: 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/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Network address of the uplink interface" +msgstr "Seoladh líonra an chomhéadain uplink" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125 +msgid "No WISPr" +msgstr "Gan WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "Gan WISPr 1 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "Gan WISPr 2 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Oscail Auth ID" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "Roghanna le haghaidh seachfhreastalaí RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "Roghanna le haghaidh TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "URL bunaidh" + +#: 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 "Port" + +#: 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 "Seachfhreastalaí iar-fhíordheimhnithe" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387 +msgid "Primary server" +msgstr "Freastalaí bunscoile" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "Program in inetd style to handle all uam requests" +msgstr "Clár i stíl inetd a láimhseáil gach iarratas uam" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "Proxy Client" +msgstr "Cliant Seachfhreastalaí" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466 +msgid "Proxy Listen" +msgstr "Seachfhreastalaí Éist" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472 +msgid "Proxy Port" +msgstr "Port Seachfhreastalaí" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482 +msgid "Proxy Secret" +msgstr "Rún Seachfhreastalaí" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68 +msgid "RADIUS" +msgstr "GA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378 +msgid "RADIUS configuration" +msgstr "Cumraíocht RADIUS" + +#: 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 "" +"Ath-Fhíordheimhniú bunaithe ar sheoladh MAC le haghaidh gach atreorú URL " +"tosaigh" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85 +msgid "Re-read configuration file at this interval" +msgstr "Athléigh an comhad cumraíochta ag an eatramh seo" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85 +msgid "Re-read interval" +msgstr "Eatramh athléite" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413 +msgid "Retries" +msgstr "Retries" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418 +msgid "Retry seconds" +msgstr "Bain triail as soicind" + +#: 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 "Cuir an XML Chilli mar a thugtar air ar ais in éineacht le WISPr XML." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193 +msgid "SSID" +msgstr "SSID" + +#: 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 "Rúnda" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Send CoovaChilli-OriginalURL in Access-Request" +msgstr "Seol CoovaChilli-OriginalURL in Iarratas Rochtana" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382 +msgid "Send IP" +msgstr "Seol IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117 +msgid "Server" +msgstr "Freastalaí" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62 +msgid "Settings" +msgstr "Socruithe" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334 +msgid "Special options for DHCP" +msgstr "Roghanna speisialta do DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "Roghanna speisialta le haghaidh fíordheimhniú MAC" + +#: 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 "" +"Sonraíonn sé linn seoltaí IP dinimiciúla. Má fhágtar an rogha seo ar lár, " +"baintear úsáid as an seoladh líonra atá sonraithe ag an nGlanrogha" + +#: 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 "" +"Sonraíonn sé linn seoltaí IP statacha. Le leithdháileadh seoladh statach is " +"féidir leis an bhfreastalaí RADIUS seoladh IP an chliaint a shonrú." + +#: 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 "IP statach" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131 +msgid "Strict DNS" +msgstr "DNS dian" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233 +msgid "Strict MAC authentication" +msgstr "Fíordheimhniú dian MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "Support 802.1Q VLAN tagged traffic only" +msgstr "Tacaíocht 802.1Q VLAN clib tráchta amháin" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "Support for 802.1Q/VLAN network" +msgstr "Tacaíocht do líonra 802.1Q / VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448 +msgid "Swap Octets" +msgstr "Babhtáil Bearta" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448 +msgid "Swap the meaning of input and output octets" +msgstr "Babhtáil an bhrí atá le hochtréad ionchuir agus aschuir" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88 +msgid "Syslog facility" +msgstr "Saoráid Syslog" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274 +msgid "TCP MSS" +msgstr "TCP MSS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "Fuinneog TCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "TCP port to bind to for authenticating clients" +msgstr "TCP port a cheangal le haghaidh cliaint a fhíordheimhniú" + +#: 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 "Gléas TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284 +msgid "TX Q length" +msgstr "Fad TX Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408 +msgid "Timeout" +msgstr "Teorainn ama" + +#: 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 "UDP Port chun éisteacht le glacadh le hiarratais RADIUS" + +#: 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 "Port UDP chun éisteacht le hiarratais dícheangail RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "UI" +msgstr "UI" + +#: 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 "Seoladh IP uathúil an NAS (seoladh nas-ip)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "Unique MAC address of the NAS (called-station-id)" +msgstr "Seoladh uathúil MAC an SAN (ar a dtugtar-stáisiún-id)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113 +msgid "Universal access method" +msgstr "Modh rochtana uilíoch" + +#: 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 "Úsáid IPv6" + +#: 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 "VLANName" + +#: 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 "Logáil WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "Aíonna WPA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60 +msgid "access controller for WLAN." +msgstr "rialaitheoir rochtana do WLAN." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "in seconds" +msgstr "i soicindí" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148 +msgid "iport" +msgstr "iportName" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260 +msgid "only" +msgstr "amháin" + +#: 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 "ar aghaidh chuig an bhfreastalaí UAM sa URL atreoraithe tosaigh" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219 +msgid "port" +msgstr "calafort" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "www binary" +msgstr "www dénártha" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "eolaire www" + +#~ 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 "General CoovaChilli settings" +#~ msgstr "General CoovaChilli settings" + +#~ msgid "Command socket" +#~ msgstr "Command socket" + +#~ msgid "UNIX socket used for communication with chilli_query" +#~ msgstr "UNIX socket used for communication with chilli_query" + +#~ msgid "Config refresh interval" +#~ msgstr "Config refresh interval" + +#~ msgid "" +#~ "Re-read configuration file and do DNS lookups every interval seconds. " +#~ "This has the same effect as sending the HUP signal. If interval is 0 " +#~ "(zero) this feature is disabled. " +#~ msgstr "" +#~ "Re-read configuration file and do DNS lookups every interval seconds. " +#~ "This has the same effect as sending the HUP signal. If interval is 0 " +#~ "(zero) this feature is disabled. " + +#~ msgid "Pid file" +#~ msgstr "Pid file" + +#~ msgid "Filename to put the process id" +#~ msgstr "Filename to put the process id" + +#~ msgid "Directory of non-volatile data" +#~ msgstr "Directory of non-volatile data" + +#~ msgid "TUN/TAP configuration" +#~ msgstr "TUN/TAP configuration" + +#~ msgid "Network/Tun configuration" +#~ msgstr "Network/Tun configuration" + +#~ msgid "Network down script" +#~ msgstr "Network down script" + +#~ msgid "" +#~ "Script executed after a session has moved from authorized state to " +#~ "unauthorized" +#~ msgstr "" +#~ "Script executed after a session has moved from authorized state to " +#~ "unauthorized" + +#~ msgid "Network up script" +#~ msgstr "Network up script" + +#~ msgid "Script executed after the tun network interface has been brought up" +#~ msgstr "Script executed after the tun network interface has been brought up" + +#~ msgid "Primary DNS Server" +#~ msgstr "Primary DNS Server" + +#~ msgid "Secondary DNS Server" +#~ msgstr "Secondary DNS Server" + +#~ msgid "Domain name" +#~ msgstr "Domain name" + +#~ msgid "" +#~ "Is used to inform the client about the domain name to use for DNS lookups" +#~ msgstr "" +#~ "Is used to inform the client about the domain name to use for DNS lookups" + +#~ msgid "Dynamic IP address pool" +#~ msgstr "Dynamic IP address pool" + +#~ msgid "Specifies a pool of dynamic IP addresses" +#~ msgstr "Specifies a pool of dynamic IP addresses" + +#~ 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 "" +#~ "Script executed after the TUN/TAP network interface has been brought up" +#~ msgstr "" +#~ "Script executed after the TUN/TAP network interface has been brought up" + +#~ msgid "Uplink subnet" +#~ msgstr "Uplink subnet" + +#~ msgid "Network address of the uplink interface (CIDR notation)" +#~ msgstr "Network address of the uplink interface (CIDR notation)" + +#~ msgid "Static IP address pool" +#~ msgstr "Static IP address pool" + +#~ msgid "Specifies a pool of static IP addresses" +#~ msgstr "Specifies a pool of static IP addresses" + +#~ msgid "TUN/TAP device" +#~ msgstr "TUN/TAP device" + +#~ msgid "The specific device to use for the TUN/TAP interface" +#~ msgstr "The specific device to use for the TUN/TAP interface" + +#~ msgid "TX queue length" +#~ msgstr "TX queue length" + +#~ msgid "The TX queue length to set on the TUN/TAP interface" +#~ msgstr "The TX queue length to set on the TUN/TAP interface" + +#~ msgid "Use TAP device" +#~ msgstr "Use TAP device" + +#~ msgid "Use the TAP interface instead of TUN" +#~ msgstr "Use the TAP interface instead of TUN" + +#~ msgid "DHCP configuration" +#~ msgstr "DHCP configuration" + +#~ msgid "Set DHCP options for connecting clients" +#~ msgstr "Set DHCP options for connecting clients" + +#~ msgid "DHCP end number" +#~ msgstr "DHCP end number" + +#~ msgid "Where to stop assigning IP addresses (default 254)" +#~ msgstr "Where to stop assigning IP addresses (default 254)" + +#~ msgid "Ethernet interface to listen to for the downlink interface" +#~ msgstr "Ethernet interface to listen to for the downlink interface" + +#~ msgid "Listen MAC address" +#~ msgstr "Listen MAC address" + +#~ msgid "" +#~ "MAC address to listen to. If not specified the MAC address of the " +#~ "interface will be used" +#~ msgstr "" +#~ "MAC address to listen to. If not specified the MAC address of the " +#~ "interface will be used" + +#~ msgid "DHCP start number" +#~ msgstr "DHCP start number" + +#~ msgid "Where to start assigning IP addresses (default 10)" +#~ msgstr "Where to start assigning IP addresses (default 10)" + +#~ msgid "Enable IEEE 802.1x" +#~ msgstr "Enable IEEE 802.1x" + +#~ msgid "Enable IEEE 802.1x authentication and listen for EAP requests" +#~ msgstr "Enable IEEE 802.1x authentication and listen for EAP requests" + +#~ msgid "Leasetime" +#~ msgstr "Leasetime" + +#~ msgid "Use a DHCP lease of seconds (default 600)" +#~ msgstr "Use a DHCP lease of seconds (default 600)" + +#~ msgid "Allow session update through RADIUS" +#~ msgstr "Allow session update through RADIUS" + +#~ msgid "" +#~ "Allow updating of session parameters with RADIUS attributes sent in " +#~ "Accounting-Response" +#~ msgstr "" +#~ "Allow updating of session parameters with RADIUS attributes sent in " +#~ "Accounting-Response" + +#~ msgid "" +#~ "Password to use for Administrative-User authentication in order to pick " +#~ "up chilli configurations and establish a device \"system\" session" +#~ msgstr "" +#~ "Password to use for Administrative-User authentication in order to pick " +#~ "up chilli configurations and establish a device \"system\" session" + +#~ msgid "" +#~ "User-name to use for Administrative-User authentication in order to pick " +#~ "up chilli configurations and establish a device \"system\" session" +#~ msgstr "" +#~ "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 "RADIUS disconnect port" +#~ msgstr "RADIUS disconnect port" + +#~ msgid "Value to use in RADIUS NAS-IP-Address attribute" +#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute" + +#~ 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 "Allow OpenID authentication" +#~ msgstr "Allow OpenID authentication" + +#~ msgid "" +#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-" +#~ "openidauth in RADIUS Access-Requests" +#~ msgstr "" +#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-" +#~ "openidauth in RADIUS Access-Requests" + +#~ msgid "RADIUS accounting port" +#~ msgstr "RADIUS accounting port" + +#~ msgid "" +#~ "The UDP port number to use for radius accounting requests (default 1813)" +#~ msgstr "" +#~ "The UDP port number to use for radius accounting requests (default 1813)" + +#~ msgid "RADIUS authentication port" +#~ msgstr "RADIUS authentication port" + +#~ msgid "" +#~ "The UDP port number to use for radius authentication requests (default " +#~ "1812)" +#~ msgstr "" +#~ "The UDP port number to use for radius authentication requests (default " +#~ "1812)" + +#~ msgid "Option radiuscalled" +#~ msgstr "Option radiuscalled" + +#~ msgid "RADIUS listen address" +#~ msgstr "RADIUS listen address" + +#~ msgid "Local interface IP address to use for the radius interface" +#~ msgstr "Local interface IP address to use for the radius interface" + +#~ msgid "RADIUS location ID" +#~ msgstr "RADIUS location ID" + +#~ msgid "RADIUS location name" +#~ msgstr "RADIUS location name" + +#~ msgid "Network access server identifier" +#~ msgstr "Network access server identifier" + +#~ msgid "Option radiusnasip" +#~ msgstr "Option radiusnasip" + +#~ msgid "NAS port type" +#~ msgstr "NAS port type" + +#~ msgid "" +#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)" +#~ msgstr "" +#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)" + +#~ msgid "Send RADIUS VSA" +#~ msgstr "Send RADIUS VSA" + +#~ msgid "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request" +#~ msgstr "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request" + +#~ msgid "RADIUS secret" +#~ msgstr "RADIUS secret" + +#~ msgid "Radius shared secret for both servers" +#~ msgstr "Radius shared secret for both servers" + +#~ msgid "RADIUS server 1" +#~ msgstr "RADIUS server 1" + +#~ msgid "The IP address of radius server 1" +#~ msgstr "The IP address of radius server 1" + +#~ msgid "RADIUS server 2" +#~ msgstr "RADIUS server 2" + +#~ msgid "The IP address of radius server 2" +#~ msgstr "The IP address of radius server 2" + +#~ msgid "Swap octets" +#~ msgstr "Swap octets" + +#~ msgid "" +#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related " +#~ "to RADIUS attribtues" +#~ msgstr "" +#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related " +#~ "to RADIUS attribtues" + +#~ msgid "Allow WPA guests" +#~ msgstr "Allow WPA guests" + +#~ msgid "" +#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-" +#~ "guests in RADIUS Access-Requests" +#~ msgstr "" +#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-" +#~ "guests in RADIUS Access-Requests" + +#~ msgid "Proxy client" +#~ msgstr "Proxy client" + +#~ msgid "" +#~ "IP address from which radius requests are accepted. If omitted the server " +#~ "will not accept radius requests" +#~ msgstr "" +#~ "IP address from which radius requests are accepted. If omitted the server " +#~ "will not accept radius requests" + +#~ msgid "Proxy listen address" +#~ msgstr "Proxy listen address" + +#~ msgid "Local interface IP address to use for accepting radius requests" +#~ msgstr "Local interface IP address to use for accepting radius requests" + +#~ msgid "Proxy port" +#~ msgstr "Proxy port" + +#~ msgid "Proxy secret" +#~ msgstr "Proxy secret" + +#~ msgid "Radius shared secret for clients" +#~ msgstr "Radius shared secret for clients" + +#~ msgid "UAM configuration" +#~ msgstr "UAM configuration" + +#~ msgid "Unified Configuration Method settings" +#~ msgstr "Unified Configuration Method settings" + +#~ msgid "Use Chilli XML" +#~ msgstr "Use Chilli XML" + +#~ 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 unless otherwise set by RADIUS (defaults to 0)" +#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)" + +#~ msgid "" +#~ "Default interim-interval for RADIUS accounting unless otherwise set by " +#~ "RADIUS (defaults to 0)" +#~ msgstr "" +#~ "Default interim-interval for RADIUS accounting unless otherwise set by " +#~ "RADIUS (defaults to 0)" + +#~ msgid "" +#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)" +#~ msgstr "" +#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)" + +#~ msgid "Inspect DNS traffic" +#~ msgstr "Inspect DNS traffic" + +#~ msgid "" +#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX " +#~ "records to prevent dns tunnels (experimental)" +#~ msgstr "" +#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX " +#~ "records to prevent dns tunnels (experimental)" + +#~ msgid "Local users file" +#~ msgstr "Local users file" + +#~ msgid "" +#~ "A colon separated file containing usernames and passwords of locally " +#~ "authenticated users" +#~ msgstr "" +#~ "A colon separated file containing usernames and passwords of locally " +#~ "authenticated users" + +#~ msgid "Location name" +#~ msgstr "Location name" + +#~ msgid "Human readable location name used in JSON interface" +#~ msgstr "Human readable location name used in JSON interface" + +#~ msgid "Do not redirect to UAM server" +#~ msgstr "Do not redirect to UAM server" + +#~ msgid "Do not do WISPr" +#~ msgstr "Do not do WISPr" + +#~ msgid "Post auth proxy" +#~ msgstr "Post auth proxy" + +#~ msgid "" +#~ "Used with postauthproxyport to define a post authentication HTTP proxy " +#~ "server" +#~ msgstr "" +#~ "Used with postauthproxyport to define a post authentication HTTP proxy " +#~ "server" + +#~ msgid "Post auth proxy port" +#~ msgstr "Post auth proxy port" + +#~ msgid "" +#~ "Used with postauthproxy to define a post authentication HTTP proxy server" +#~ msgstr "" +#~ "Used with postauthproxy to define a post authentication HTTP proxy server" + +#~ msgid "Allowed resources" +#~ msgstr "Allowed resources" + +#~ msgid "List of resources the client can access without first authenticating" +#~ msgstr "" +#~ "List of resources the client can access without first authenticating" + +#~ msgid "Allow any DNS server" +#~ msgstr "Allow any DNS server" + +#~ msgid "Allow any DNS server for unauthenticated clients" +#~ msgstr "Allow any DNS server for unauthenticated clients" + +#~ msgid "Allow any IP address" +#~ msgstr "Allow any IP address" + +#~ msgid "" +#~ "Allow clients to use any IP settings they wish by spoofing ARP " +#~ "(experimental)" +#~ msgstr "" +#~ "Allow clients to use any IP settings they wish by spoofing ARP " +#~ "(experimental)" + +#~ msgid "Allowed domains" +#~ msgstr "Allowed domains" + +#~ msgid "" +#~ "Defines a list of domain names to automatically add to the walled garden" +#~ msgstr "" +#~ "Defines a list of domain names to automatically add to the walled garden" + +#~ msgid "UAM homepage" +#~ msgstr "UAM homepage" + +#~ msgid "UAM static content port" +#~ msgstr "UAM static content port" + +#~ msgid "UAM listening address" +#~ msgstr "UAM listening address" + +#~ msgid "IP address to listen to for authentication of clients" +#~ msgstr "IP address to listen to for authentication of clients" + +#~ msgid "UAM logout IP" +#~ msgstr "UAM logout IP" + +#~ msgid "" +#~ "Use this IP address to instantly logout a client accessing it (defaults " +#~ "to 1.1.1.1)" +#~ msgstr "" +#~ "Use this IP address to instantly logout a client accessing it (defaults " +#~ "to 1.1.1.1)" + +#~ msgid "UAM listening port" +#~ msgstr "UAM listening port" + +#~ msgid "TCP port to bind to for authenticating clients (default 3990)" +#~ msgstr "TCP port to bind to for authenticating clients (default 3990)" + +#~ msgid "UAM secret" +#~ msgstr "UAM secret" + +#~ msgid "Shared secret between uamserver and chilli" +#~ msgstr "Shared secret between uamserver and chilli" + +#~ msgid "UAM server" +#~ msgstr "UAM server" + +#~ msgid "UAM user interface" +#~ msgstr "UAM user interface" + +#~ msgid "" +#~ "An init.d style program to handle local content on the uamuiport web " +#~ "server" +#~ msgstr "" +#~ "An init.d style program to handle local content on the uamuiport web " +#~ "server" + +#~ msgid "" +#~ "Write the status of clients in a non-volatile state file (experimental)" +#~ msgstr "" +#~ "Write the status of clients in a non-volatile state file (experimental)" + +#~ msgid "WISPr login url" +#~ msgstr "WISPr login url" + +#~ msgid "Specific URL to be given in WISPr XML LoginURL" +#~ msgstr "Specific URL to be given in WISPr XML LoginURL" + +#~ msgid "CGI program" +#~ msgstr "CGI program" + +#~ msgid "" +#~ "Executable to run as a CGI type program (like haserl) for URLs with " +#~ "extension .chi" +#~ msgstr "" +#~ "Executable to run as a CGI type program (like haserl) for URLs with " +#~ "extension .chi" + +#~ msgid "Web content directory" +#~ msgstr "Web content directory" + +#~ msgid "MAC configuration" +#~ msgstr "MAC configuration" + +#~ msgid "Configure MAC authentication" +#~ msgstr "Configure MAC authentication" + +#~ msgid "Allowed MAC addresses" +#~ msgstr "Allowed MAC addresses" + +#~ msgid "List of MAC addresses for which MAC authentication will be performed" +#~ msgstr "" +#~ "List of MAC addresses for which MAC authentication will be performed" + +#~ msgid "Authenticate locally allowed MACs" +#~ msgstr "Authenticate locally allowed MACs" + +#~ msgid "Authenticate allowed MAC addresses without the use of RADIUS" +#~ msgstr "Authenticate allowed MAC addresses without the use of RADIUS" + +#~ msgid "Enable MAC authentification" +#~ msgstr "Enable MAC authentification" + +#~ msgid "Try to authenticate all users based on their mac address alone" +#~ msgstr "Try to authenticate all users based on their mac address alone" + +#~ msgid "Password" +#~ msgstr "Password" + +#~ msgid "Suffix" +#~ msgstr "Suffix" + +#~ msgid "coovachilli_macauth_macsuffix_desc" +#~ msgstr "" +#~ "Suffix to add to the MAC address in order to form the User-Name, which is " +#~ "sent to the radius server" diff --git a/applications/luci-app-coovachilli/po/he/coovachilli.po b/applications/luci-app-coovachilli/po/he/coovachilli.po index 987d632ed6..2a2d81521f 100644 --- a/applications/luci-app-coovachilli/po/he/coovachilli.po +++ b/applications/luci-app-coovachilli/po/he/coovachilli.po @@ -14,22 +14,680 @@ msgstr "" "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 "" diff --git a/applications/luci-app-coovachilli/po/hi/coovachilli.po b/applications/luci-app-coovachilli/po/hi/coovachilli.po index e726324f45..759e02630b 100644 --- a/applications/luci-app-coovachilli/po/hi/coovachilli.po +++ b/applications/luci-app-coovachilli/po/hi/coovachilli.po @@ -13,26 +13,694 @@ 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" @@ -64,9 +732,6 @@ msgstr "" #~ 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" @@ -112,15 +777,9 @@ msgstr "" #~ 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 "" @@ -168,9 +827,6 @@ 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" @@ -212,9 +868,6 @@ msgstr "" #~ "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" @@ -222,9 +875,6 @@ msgstr "" #~ "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" @@ -235,24 +885,12 @@ msgstr "" #~ 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" @@ -296,18 +934,9 @@ msgstr "" #~ 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" @@ -385,9 +1014,6 @@ msgstr "" #~ 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" @@ -406,15 +1032,9 @@ msgstr "" #~ 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)" @@ -422,9 +1042,6 @@ msgstr "" #~ "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 "" @@ -459,19 +1076,9 @@ 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" @@ -524,15 +1131,9 @@ msgstr "" #~ 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" @@ -564,9 +1165,6 @@ msgstr "" #~ 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" @@ -577,9 +1175,6 @@ msgstr "" #~ "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 "" @@ -604,9 +1199,6 @@ 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" @@ -635,9 +1227,6 @@ msgstr "" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/hu/coovachilli.po b/applications/luci-app-coovachilli/po/hu/coovachilli.po index 84c7bd1588..5dc3748364 100644 --- a/applications/luci-app-coovachilli/po/hu/coovachilli.po +++ b/applications/luci-app-coovachilli/po/hu/coovachilli.po @@ -14,22 +14,680 @@ msgstr "" "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 "" diff --git a/applications/luci-app-coovachilli/po/it/coovachilli.po b/applications/luci-app-coovachilli/po/it/coovachilli.po index d0f9e66e22..fcac0b216a 100644 --- a/applications/luci-app-coovachilli/po/it/coovachilli.po +++ b/applications/luci-app-coovachilli/po/it/coovachilli.po @@ -14,26 +14,684 @@ 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" diff --git a/applications/luci-app-coovachilli/po/ja/coovachilli.po b/applications/luci-app-coovachilli/po/ja/coovachilli.po index 170f7be4c9..f169af96b3 100644 --- a/applications/luci-app-coovachilli/po/ja/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ja/coovachilli.po @@ -14,22 +14,680 @@ msgstr "" "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 "" diff --git a/applications/luci-app-coovachilli/po/ko/coovachilli.po b/applications/luci-app-coovachilli/po/ko/coovachilli.po index ceec058ecf..7ae7f03565 100644 --- a/applications/luci-app-coovachilli/po/ko/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ko/coovachilli.po @@ -14,26 +14,694 @@ 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" @@ -65,9 +733,6 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM 및 MAC 인증" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM 및 MAC 인증" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM 및 MAC 인증" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM 및 MAC 인증" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM 및 MAC 인증" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM 및 MAC 인증" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM 및 MAC 인증" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM 및 MAC 인증" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/lt/coovachilli.po b/applications/luci-app-coovachilli/po/lt/coovachilli.po index 62c53823d8..9331703f5d 100644 --- a/applications/luci-app-coovachilli/po/lt/coovachilli.po +++ b/applications/luci-app-coovachilli/po/lt/coovachilli.po @@ -3,39 +3,733 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2023-12-02 18:04+0000\n" -"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" +"PO-Revision-Date: 2024-10-27 16:19+0000\n" +"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n" "Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/lt/>\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " -"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " -"1 : 2);\n" -"X-Generator: Weblate 5.3-dev\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (" +"n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8.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 "0-is reiškia neribotas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "„802.1Q“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Tik „802.1Q“" + +#: 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 "" +"Savitas „URL“ – saitas, kuris turi būti pateiktas „WISPr XML“ prisijungimo " +"„URL“ – saite" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403 +msgid "Accounting port" +msgstr "Apskaitos prievadas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451 +msgid "Accounting update" +msgstr "Apskaitos atnaujinimas" + +#: 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 "Leisti vietinį „MAC“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Leisti visus seansus, kai „RADIUS“ yra nepasiekiamas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "Leisti visus, nedalyvaujant/nebūnant „RADIUS“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "Leisti klientui naudoti bet kurį IP adresą" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "Leisti neautentifikuotiems naudotojams pasiekti bet kurį „DNS“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161 +msgid "Allowed" +msgstr "Leidžiama" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237 +msgid "Allowed MACs" +msgstr "Leidžiami „MAC“ (dgs.)" + +#: 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 "Visada atsakyti į „DHCP“ transliavimo IP, kai nėra perdavimo." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "Bet koks „DNS“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Bet koks IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398 +msgid "Authentication port" +msgstr "Autenfikavimo prievadas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391 +msgid "Auxiliary server" +msgstr "Pagalbinis serveris" + +#: 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 "" +"Būkite griežti dėl „MAC Auth“ (jokio „DHCP“ atsakymo, kol negausime „RADIUS“ " +"atsakymo)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371 +msgid "Broadcast Answer" +msgstr "Transliavimo atsakymas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454 +msgid "COA Port" +msgstr "„COA“ prievadas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "„COA“ be IP patikrinimo/-os" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "„Chilli XML“" + +#: 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 "" +"„ChilliSpot“ bandys autentifikuoti visus vartotojus tik pagal jų „Mac“ adresą" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328 +msgid "Connection down script" +msgstr "Ryšio atjungimo skriptas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Connection up script" +msgstr "Ryšio prijungimo skriptas" + +#: 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 "„Coova Chilli“" #: 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 "„DHCP“ išjungimas/pabaiga" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "„DHCP“ tinklo tarpuvartės IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "„DHCP“ tinklo tarpuvartės prievadas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "„DHCP“ paleidimas/pradžia" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338 +msgid "DHCP interface" +msgstr "„DHCP“ sąsaja ir/arba sietuvas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306 +msgid "DNS Auxiliary" +msgstr "„DNS“ pagalbinis" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "„DNS“ pirminis/pagrindinis" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83 +msgid "Debug" +msgstr "Derinimas/Trukdžių šalinimas" + +#: 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 "" +"Numatytasis duomenų siuntimo ir perdavimo srauto pralaidumo maksimaliai " +"atsiųstą baitais per sekundę, ta pati kintamoji kaip – „WISPr-Bandwidth-Max-" +"Down“." + +#: 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 "" +"Numatytasis duomenų siuntimo ir perdavimo srauto pralaidumo maksimaliai " +"nusiųsta baitais per sekundę, ta pati kintamoji kaip – „WISPr-Bandwidth-Max-" +"Up“." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173 +msgid "Default idle timeout" +msgstr "Numatytas budėjimo pasibaigusios užklausos laikas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178 +msgid "Default interim interval" +msgstr "Numatytas tarpinis intervalas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168 +msgid "Default session timeout" +msgstr "Numatytas seanso pasibaigusios užklausos laikas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234 +msgid "Deny MAC authentication" +msgstr "Atmesti/Neprileisti „MAC“ autenfikavimo" + +#: 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 "" +"Atmesti/Neprileisti prieigą (net „UAM“) prie „MAC“ adresų, kuriems suteiktas " +"prieigos atmetimas/neprileidimas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "Directory where embedded local web content is placed" +msgstr "" +"Katalogas/Vietovė, kuriame dedamas įterptasis vietinis žiniatinklio turinys" + +#: 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 "Netikrinti „RADIUS“ atjungimo užklausų šaltinio IP adreso" + +#: 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 "Nedaryti jokio „WISPr XML“, tarkime, kad vietoj to tai daro vidinė pusė" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "Do not offer WISPr 1.0 XML" +msgstr "Nesiūlyti „WISPr 1.0 XML“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "Nesiūlyti „WISPr 2.0 XML“" + +#: 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 "" +"Negrįžti į „UAM“ serverį sėkmingai prisijungus, tiesiog peradresuoti į " +"pradinį „URL“ – saitą" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311 +msgid "Domain" +msgstr "Domenas-Sritis" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152 +msgid "Domain suffixes" +msgstr "Domeno-Sričių priesagos" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292 +msgid "Dynamic IP" +msgstr "Dinaminis IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Įjungti/Įgalinti „EAPOL“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75 +msgid "Enabled" +msgstr "Įjungta/Įgalinta (-s/-i)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "Executable to run as a CGI type program" +msgstr "Vykdomoji paleidimui, kaip „CGI“ tipo programa" + +#: 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 "" +"Vykdoma po to, kai seansas perėjo iš autorizuotos būsenos/būklės į ne " +"autorizuota" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Executed after a session is authorized" +msgstr "Vykdomas po to, kai seansas yra autorizuotas" + +#: 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 "" +"Vykdoma/-as po to, kai buvo pristatyta/-as „TUN/TAP“ tinklo sąsaja ir/arba " +"sietuvas" + +#: 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 "" +"Vykdoma/-as po to, kai buvo nuimta/-as „TUN/TAP“ tinklo sąsaja ir/arba " +"sietuvas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65 +msgid "General" +msgstr "Bendra/-i/-ai/-s" + #: 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 "Pagrindinis/Pradžios puslapis" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "IEEE 802.1x authentication" +msgstr "„IEEE 802.1x“ autenfikavimas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "IP adresas, iš kurio yra priimamos „RADIUS“ užklausos" + +#: 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 "IPv6 veiksena" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124 +msgid "Ignore Success" +msgstr "Ignoruoti sėkmingą/pavykusią bandymą" + +#: 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 "" +"Tyrinėti „DNS“ paketus ir atsisakyti atsakymų su bet kokiais ne „A“, „CNAME“" +", „SOA“ ar „MX“ įrašais" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "Lease time" +msgstr "Nuomos laikas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140 +msgid "Listen" +msgstr "Laukti (-iama/-s) prisijungimo/jungties ryšio" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213 +msgid "Local users" +msgstr "Vietiniai naudotojai/vartotojai" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223 +msgid "Location Name" +msgstr "Vietinis pavadinimas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156 +msgid "Logout IP" +msgstr "Seanso pabaigos IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "„MAC“ autenfikavimas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "„MAC“ slaptažodis" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "„MAC“ pakartotinis autenfikavimas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "„MAC“ priesaga" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279 +msgid "Max clients" +msgstr "Maksimalus klientų skaičius" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183 +msgid "Max download bandwidth" +msgstr "" +"Maksimalus atsisiuntimo duomenų siuntimo ir perdavimo srauto pralaidumas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188 +msgid "Max upload bandwidth" +msgstr "Maksimalus įkėlimo duomenų siuntimo ir perdavimo srauto pralaidumas" + +#: 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 "„NAS“ identifikatorius" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "„NAS“ prievado tipas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Net" +msgstr "Tinklas" + +#: 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 "Aukštynkrypčios-/io sąsajos ir/arba sietuvo tinklo adresas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125 +msgid "No WISPr" +msgstr "Be/Neleisti „WISPr“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "Be/Neleisti „WISPr 1 XML“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "Be/Neleisti „WISPr 2 XML“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Atidaryti ID autenfikavimą" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "Paskirtys, skirtos – „RADIUS“ įgaliotojai" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "Paskirtys, skirtos – „TUN“" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "Originalus „URL“ – saitas" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "Password used when performing MAC authentication" +msgstr "Slaptažodis naudojamas atliekant „MAC“ autentifikavimą" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "Port" +msgstr "Prievadas" + +#: 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 "Įgaliotinis po autenfikavimo" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387 +msgid "Primary server" +msgstr "Pirminis/Pagrindinis serveris" + +#: 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 "Būsenos/Būklės katalogas/vietovė" + +#: 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“ prievadas, prie kurio reikia pririšti tik tarnaujantį įterptąjį turinį" + +#: 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 "" +"Pagrindinio/Pradžios puslapio „URL“ – Saitas, skirtas peradresuoti " +"neautentifikuotus klientus į" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117 +msgid "URL of web server to use for authenticating clients" +msgstr "Žiniatinklio serverio „URL“ – saitas, skirtas autentifikuoti klientus" + +#: 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 "Naudojimo būklės/būsenos failas" + +#: 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“ vietovės ID" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432 +msgid "WISPr Location Name" +msgstr "„WISPr“ vietovės pavadinimas" + +#: 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" @@ -67,9 +761,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -115,15 +806,9 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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 "" @@ -171,9 +856,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -215,9 +897,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ "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" @@ -225,9 +904,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ "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" @@ -238,24 +914,12 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -299,18 +963,9 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -388,9 +1043,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -409,15 +1061,9 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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)" @@ -425,9 +1071,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ "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 "" @@ -462,19 +1105,9 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -527,15 +1160,9 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -567,9 +1194,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -580,9 +1204,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ "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 "" @@ -607,9 +1228,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ 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" @@ -638,9 +1256,6 @@ msgstr "„UAM“ ir „MAC“ autentifikavimas" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/mr/coovachilli.po b/applications/luci-app-coovachilli/po/mr/coovachilli.po index db8a70c02a..9779567eab 100644 --- a/applications/luci-app-coovachilli/po/mr/coovachilli.po +++ b/applications/luci-app-coovachilli/po/mr/coovachilli.po @@ -14,26 +14,694 @@ msgstr "" "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" @@ -65,9 +733,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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" @@ -113,15 +778,9 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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 "" @@ -169,9 +828,6 @@ 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" @@ -213,9 +869,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ "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" @@ -223,9 +876,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ "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" @@ -236,24 +886,12 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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" @@ -297,18 +935,9 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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" @@ -386,9 +1015,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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" @@ -407,15 +1033,9 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ "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 "" @@ -460,19 +1077,9 @@ 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" @@ -525,15 +1132,9 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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" @@ -565,9 +1166,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ 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" @@ -578,9 +1176,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ "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 "" @@ -605,9 +1200,6 @@ 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" @@ -636,9 +1228,6 @@ msgstr "यूएएम आणि मॅक प्रमाणीकरण" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/ms/coovachilli.po b/applications/luci-app-coovachilli/po/ms/coovachilli.po index a9f678f5a6..2207e48077 100644 --- a/applications/luci-app-coovachilli/po/ms/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ms/coovachilli.po @@ -9,22 +9,680 @@ msgstr "" "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 "" diff --git a/applications/luci-app-coovachilli/po/nb_NO/coovachilli.po b/applications/luci-app-coovachilli/po/nb_NO/coovachilli.po index 2629fe49c9..e8d48284cc 100644 --- a/applications/luci-app-coovachilli/po/nb_NO/coovachilli.po +++ b/applications/luci-app-coovachilli/po/nb_NO/coovachilli.po @@ -14,22 +14,680 @@ 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 "" diff --git a/applications/luci-app-coovachilli/po/nl/coovachilli.po b/applications/luci-app-coovachilli/po/nl/coovachilli.po index eb4234b6fd..a2c9f19c33 100644 --- a/applications/luci-app-coovachilli/po/nl/coovachilli.po +++ b/applications/luci-app-coovachilli/po/nl/coovachilli.po @@ -14,26 +14,694 @@ 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" @@ -65,9 +733,6 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -113,15 +778,9 @@ msgstr "UAM en MAC-authenticatie" #~ 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 "" @@ -169,9 +828,6 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -213,9 +869,6 @@ msgstr "UAM en MAC-authenticatie" #~ "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" @@ -223,9 +876,6 @@ msgstr "UAM en MAC-authenticatie" #~ "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" @@ -236,24 +886,12 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -297,18 +935,9 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -386,9 +1015,6 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -407,15 +1033,9 @@ msgstr "UAM en MAC-authenticatie" #~ 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)" @@ -423,9 +1043,6 @@ msgstr "UAM en MAC-authenticatie" #~ "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 "" @@ -460,19 +1077,9 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -525,15 +1132,9 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -565,9 +1166,6 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -578,9 +1176,6 @@ msgstr "UAM en MAC-authenticatie" #~ "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 "" @@ -605,9 +1200,6 @@ msgstr "UAM en MAC-authenticatie" #~ 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" @@ -636,9 +1228,6 @@ msgstr "UAM en MAC-authenticatie" #~ msgid "Password" #~ msgstr "Password" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Password used when performing MAC authentication" - #~ msgid "Suffix" #~ msgstr "Suffix" diff --git a/applications/luci-app-coovachilli/po/pl/coovachilli.po b/applications/luci-app-coovachilli/po/pl/coovachilli.po index 4f5a845fed..be15b1da43 100644 --- a/applications/luci-app-coovachilli/po/pl/coovachilli.po +++ b/applications/luci-app-coovachilli/po/pl/coovachilli.po @@ -3,34 +3,714 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2023-11-07 22:37+0000\n" -"Last-Translator: Matthaiks <kitynska@gmail.com>\n" +"PO-Revision-Date: 2024-10-16 13:01+0000\n" +"Last-Translator: Piotr Kołtun <pkoltungm@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/pl/>\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.2-dev\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\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 "0 oznacza nieograniczone" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Tylko 802.1Q" + +#: 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 "Określony adres URL do podania w pliku LoginURL WISPr XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403 +msgid "Accounting port" +msgstr "Port rozliczeniowy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451 +msgid "Accounting update" +msgstr "Aktualizacja rozliczeniowa" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443 +msgid "Admin password" +msgstr "Hasło administratora" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441 +msgid "Admin user" +msgstr "Login administratora" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236 +msgid "Allow Local MAC" +msgstr "Zezwól na lokalny MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Zezwól na wszystkie sesje, gdy RADIUS jest niedostępny" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "Zezwól na wszystko, brak RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "Zezwól klientowi na używanie dowolnego adresu IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "" +"Zezwól użytkownikom nieuwierzytelnionym na dostęp do dowolnego serwera DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161 +msgid "Allowed" +msgstr "Dozwolone" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237 +msgid "Allowed MACs" +msgstr "Dozwolone adresy MAC" + +#: 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 "Zawsze odpowiadaj na protokół DHCP w przypadku braku przekaźnika." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "Dowolny DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Dowolny adres IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398 +msgid "Authentication port" +msgstr "Port uwierzytelniania" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391 +msgid "Auxiliary server" +msgstr "Serwer dodatkowy" + +#: 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 "" +"Bądź rygorystyczny w kwestii uwierzytelniania MAC (brak odpowiedzi DHCP, " +"dopóki nie otrzymamy odpowiedzi RADIUS)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371 +msgid "Broadcast Answer" +msgstr "Odpowiedź rozgłoszeniowa" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454 +msgid "COA Port" +msgstr "Port COA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "COA bez kontroli IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "Chilli XML" + +#: 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 "" +"ChilliSpot będzie próbować uwierzytelniać wszystkich użytkowników wyłącznie " +"na podstawie ich adresów MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328 +msgid "Connection down script" +msgstr "Skrypt zakończenia połączenia" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Connection up script" +msgstr "Skrypt nawiązywania połączenia" + +#: 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 "Coova Chilli" #: 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 "Zakończenie DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "Adres IP bramy DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "Port bramy DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "Początek DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338 +msgid "DHCP interface" +msgstr "Interfejs DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306 +msgid "DNS Auxiliary" +msgstr "Dodatkowy DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "Podstawowy DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83 +msgid "Debug" +msgstr "Debugowanie" + +#: 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 "" +"Domyślna maksymalna przepustowość pobierania jest ustawiona w bps, tak samo " +"jak WISPr-Bandwidth-Max-Down." + +#: 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 "" +"Domyślna maksymalna przepustowość wysyłania jest ustawiona w bps, tak samo " +"jak WISPr-Bandwidth-Max-Up." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173 +msgid "Default idle timeout" +msgstr "Domyślny limit czasu bezczynności" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178 +msgid "Default interim interval" +msgstr "Domyślny interwał przejściowy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168 +msgid "Default session timeout" +msgstr "Domyślny limit czasu sesji" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234 +msgid "Deny MAC authentication" +msgstr "Odmów uwierzytelniania MAC" + +#: 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 "Odmów dostępu (nawet UAM) do adresów MAC z opcją Access-Reject" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "Directory where embedded local web content is placed" +msgstr "Katalog, w którym umieszczana jest osadzona lokalna treść internetowa" + +#: 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 "Nie sprawdzaj adresu IP źródłowego żądań rozłączenia RADIUS" + +#: 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 "Nie wykonuj żadnego WISPr XML, załóż, że robi to back-end" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "Do not offer WISPr 1.0 XML" +msgstr "Nie oferuj WISPR 1.0 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "Nie oferuj WISPR 2.0 XML" + +#: 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 "" +"Nie wracaj do serwera UAM po pomyślnym zalogowaniu, przekieruj tylko do " +"pierwotnego adresu URL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311 +msgid "Domain" +msgstr "Domena" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152 +msgid "Domain suffixes" +msgstr "Sufiksy domen" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292 +msgid "Dynamic IP" +msgstr "Dynamiczny adres IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Włącz EAPOL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75 +msgid "Enabled" +msgstr "Włączone" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "Executable to run as a CGI type program" +msgstr "Plik wykonywalny do uruchomienia jako program typu CGI" + +#: 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 "" +"Wykonywane po przejściu sesji ze stanu autoryzowanego do nieautoryzowanego" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324 +msgid "Executed after a session is authorized" +msgstr "Wykonywane po autoryzacji sesji" + +#: 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 "Wykonywane po uruchomieniu interfejsu sieciowego TUN/TAP" + +#: 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 "Wykonywane po wyłączeniu interfejsu sieciowego TUN/TAP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65 +msgid "General" +msgstr "Ogólne" + #: 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 "Strona główna" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "IEEE 802.1x authentication" +msgstr "Uwierzytelnianie IEEE 802.1X" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "Adres IP, z którego akceptowane są żądania RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320 +msgid "IP down script" +msgstr "Skrypt rozłączenia" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316 +msgid "IP up script" +msgstr "Skrypt połączenia" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261 +msgid "IPv6 mode" +msgstr "Tryb IPv6" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124 +msgid "Ignore Success" +msgstr "Ignoruj powodzenie" + +#: 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 "" +"Przeprowadź inspekcję pakietów DNS i usuń odpowiedzi niezawierające rekordów " +"A, CNAME, SOA lub MX" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "Lease time" +msgstr "Czas dzierżawy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140 +msgid "Listen" +msgstr "Nasłuchuj" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213 +msgid "Local users" +msgstr "Użytkownicy lokalni" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223 +msgid "Location Name" +msgstr "Nazwa lokalizacji" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156 +msgid "Logout IP" +msgstr "Adres IP wylogowania" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "Uwierzytelnianie MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "Hasło MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "Ponowne uwierzytelnianie MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "Sufiks MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279 +msgid "Max clients" +msgstr "Maks. klientów" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183 +msgid "Max download bandwidth" +msgstr "Maks. przepustowość pobierania" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188 +msgid "Max upload bandwidth" +msgstr "Maks. przepustowość wysyłania" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423 +msgid "NAS ID" +msgstr "Identyfikator NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197 +msgid "NAS IP" +msgstr "Adres IP NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "NAS MAC" +msgstr "Adres MAC NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423 +msgid "NAS-Identifier" +msgstr "NAS-Identifier" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "NAS-Port-Type" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Net" +msgstr "Sieć" + +#: 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 "Adres sieciowy interfejsu uplink" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125 +msgid "No WISPr" +msgstr "Brak WISPR" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "Brak WISPr 1 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "Brak WISPr 2 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Otwórz uwierzytelnianie ID" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "Opcje dla serwera proxy RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "Opcje dla TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "Pierwotny adres URL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "Password used when performing MAC authentication" +msgstr "Hasło używane podczas uwierzytelniania MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "Port" +msgstr "Port" + +#: 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 "Serwer proxy po uwierzytelnieniu" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387 +msgid "Primary server" +msgstr "Serwer główny" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "Program in inetd style to handle all uam requests" +msgstr "Program w stylu inetd do obsługi wszystkich żądań uam" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "Proxy Client" +msgstr "Klient proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466 +msgid "Proxy Listen" +msgstr "Nasłuchiwanie proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472 +msgid "Proxy Port" +msgstr "Port proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482 +msgid "Proxy Secret" +msgstr "Sekret proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68 +msgid "RADIUS" +msgstr "RADIUS" + +#: 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 "" +"Ponowne uwierzytelnianie na podstawie adresu MAC dla każdego początkowego " +"przekierowania adresu URL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85 +msgid "Re-read configuration file at this interval" +msgstr "Ponowne odczytywanie pliku konfiguracyjnego w tym interwale" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85 +msgid "Re-read interval" +msgstr "Interwał ponownego odczytu" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413 +msgid "Retries" +msgstr "Ponowne próby" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418 +msgid "Retry seconds" +msgstr "Sekundy ponawiania" + +#: 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 "Zwróć tzw. Chilli XML wraz z WISPr XML." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193 +msgid "SSID" +msgstr "SSID" + +#: 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 "Sekret" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Send CoovaChilli-OriginalURL in Access-Request" +msgstr "Wyślij CoovaChilli-OriginalURL w Access-Request" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382 +msgid "Send IP" +msgstr "Wyślij IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117 +msgid "Server" +msgstr "Serwer" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62 +msgid "Settings" +msgstr "Ustawienia" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334 +msgid "Special options for DHCP" +msgstr "Opcje specjalne dla DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "Opcje specjalne dla uwierzytelniania MAC" + +#: 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 "" +"Określa pulę dynamicznych adresów IP. Jeśli ta opcja zostanie pominięta, " +"używany jest adres sieciowy określony przez opcję Sieć" + +#: 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 "" +"Określa pulę statycznych adresów IP. Przy statycznym przydzielaniu adresów " +"adres IP klienta może zostać określony przez serwer RADIUS." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107 +msgid "State directory" +msgstr "Katalog stanu" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297 +msgid "Static IP" +msgstr "Statyczny adres IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131 +msgid "Strict DNS" +msgstr "Ścisły DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233 +msgid "Strict MAC authentication" +msgstr "Ścisłe uwierzytelnianie MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "Support 802.1Q VLAN tagged traffic only" +msgstr "Obsługa wyłącznie ruchu oznaczonego tagami 802.1Q VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "Support for 802.1Q/VLAN network" +msgstr "Obsługa sieci 802.1Q/VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448 +msgid "Swap Octets" +msgstr "Zamień oktety" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448 +msgid "Swap the meaning of input and output octets" +msgstr "Zamień znaczenie oktetów wejściowych i wyjściowych" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88 +msgid "Syslog facility" +msgstr "Lokalizacja dziennika systemowego" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274 +msgid "TCP MSS" +msgstr "TCP MSS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "Okno TCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "TCP port to bind to for authenticating clients" +msgstr "Port TCP do przypisania w celu uwierzytelnienia klientów" + +#: 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 do powiązania w celu obsługi wyłącznie zawartości osadzonej" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266 +msgid "TUN device" +msgstr "Urządzenie TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284 +msgid "TX Q length" +msgstr "Długość kolejki TX" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408 +msgid "Timeout" +msgstr "Limit czasu" + +#: 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 "Port UDP do nasłuchiwania w celu akceptowania żądań RADIUS" + +#: 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 "Port UDP do nasłuchiwania żądań rozłączenia RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "UI" +msgstr "Interfejs użytkownika" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136 +msgid "URL of homepage to redirect unauthenticated users to" +msgstr "" +"Adres URL strony głównej, na którą mają być przekierowywani " +"nieuwierzytelnieni użytkownicy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117 +msgid "URL of web server to use for authenticating clients" +msgstr "Adres URL serwera webowego do uwierzytelniania klientów" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197 +msgid "Unique IP address of the NAS (nas-ip-address)" +msgstr "Unikalny adres IP serwera NAS (nas-ip-address)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "Unique MAC address of the NAS (called-station-id)" +msgstr "Unikalny adres MAC serwera NAS (called-station-id)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113 +msgid "Universal access method" +msgstr "Uniwersalna metoda dostępu" + +#: 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 "Użyj IPv6" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133 +msgid "Use status file" +msgstr "Użyj pliku stanu" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195 +msgid "VLAN" +msgstr "VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428 +msgid "WISPr Location ID" +msgstr "Identyfikator lokalizacji WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432 +msgid "WISPr Location Name" +msgstr "Nazwa lokalizacji WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165 +msgid "WISPr Login" +msgstr "Logowanie WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "Goście WPA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60 +msgid "access controller for WLAN." +msgstr "kontroler dostępu do sieci WLAN." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345 +msgid "in seconds" +msgstr "w sekundach" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148 +msgid "iport" +msgstr "iport" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260 +msgid "only" +msgstr "tylko" + +#: 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 "przekazany do serwera UAM w początkowym adresie URL przekierowania" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219 +msgid "port" +msgstr "port" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "www binary" +msgstr "binarny www" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "katalog www" diff --git a/applications/luci-app-coovachilli/po/pt/coovachilli.po b/applications/luci-app-coovachilli/po/pt/coovachilli.po index 766346424e..83741ddd3c 100644 --- a/applications/luci-app-coovachilli/po/pt/coovachilli.po +++ b/applications/luci-app-coovachilli/po/pt/coovachilli.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: 2020-11-05 13:59+0000\n" +"PO-Revision-Date: 2024-07-20 20:09+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/pt/>\n" @@ -12,28 +12,700 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3.2-dev\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 acesso UCI ao 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" @@ -64,9 +736,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -117,20 +786,12 @@ msgstr "Autenticação UAM e MAC" #~ "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" #~ msgstr "Script executado apos o interface tun de rede ter sido levantado" @@ -193,10 +854,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -213,22 +870,10 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -285,20 +930,10 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -341,11 +976,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -364,11 +994,6 @@ msgstr "Autenticação UAM e MAC" #~ "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" diff --git a/applications/luci-app-coovachilli/po/pt_BR/coovachilli.po b/applications/luci-app-coovachilli/po/pt_BR/coovachilli.po index 0e11e1c1af..47abd2c62f 100644 --- a/applications/luci-app-coovachilli/po/pt_BR/coovachilli.po +++ b/applications/luci-app-coovachilli/po/pt_BR/coovachilli.po @@ -14,26 +14,700 @@ msgstr "" "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" @@ -64,9 +738,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -113,15 +784,9 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -168,9 +833,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -212,9 +874,6 @@ msgstr "Autenticação UAM e MAC" #~ "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" @@ -222,9 +881,6 @@ msgstr "Autenticação UAM e MAC" #~ "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" @@ -236,27 +892,12 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -301,18 +942,9 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -392,9 +1024,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -413,17 +1042,11 @@ msgstr "Autenticação UAM e MAC" #~ 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)" @@ -431,9 +1054,6 @@ msgstr "Autenticação UAM e MAC" #~ "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 "" @@ -469,21 +1089,9 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -538,15 +1146,9 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -578,9 +1180,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -591,9 +1190,6 @@ msgstr "Autenticação UAM e MAC" #~ "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 "" @@ -619,9 +1215,6 @@ msgstr "Autenticação UAM e MAC" #~ 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" @@ -652,9 +1245,6 @@ msgstr "Autenticação UAM e 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" diff --git a/applications/luci-app-coovachilli/po/ro/coovachilli.po b/applications/luci-app-coovachilli/po/ro/coovachilli.po index af50ba6e7d..61cf2ed0a0 100644 --- a/applications/luci-app-coovachilli/po/ro/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ro/coovachilli.po @@ -15,22 +15,680 @@ msgstr "" "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 "" diff --git a/applications/luci-app-coovachilli/po/ru/coovachilli.po b/applications/luci-app-coovachilli/po/ru/coovachilli.po index fcdf03023a..a3299fbe5f 100644 --- a/applications/luci-app-coovachilli/po/ru/coovachilli.po +++ b/applications/luci-app-coovachilli/po/ru/coovachilli.po @@ -3,39 +3,728 @@ msgstr "" "Project-Id-Version: LuCI: coovachilli\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2020-06-07 15:48+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2024-10-17 17:10+0000\n" +"Last-Translator: sergio <sergio+it@outerface.net>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/ru/>\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1-dev\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\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 "0 - без ограничения" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Только 802.1Q" + +#: 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 "Определенный URL, который должен быть указан в WISPr XML LoginURL" + +#: 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 "Разрешить локальный MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Разрешить все сеансы, когда RADIUS недоступен" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "Разрешить все, отсутствует RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "Разрешить клиенту использовать любой IP-адрес" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "Разрешить неавторизованным пользователям доступ к любому DNS" + +#: 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 "Разрешенные MAC-адреса" + +#: 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 "Всегда отвечать на DHCP на широковещательный IP, если нет ретрансляции." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "Любой DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Любой IP-адрес" + +#: 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 "" +"Строго соблюдать MAC Auth (не отвечать на DHCP, пока не получит ответ RADIUS)" + +#: 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 "Порт COA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "COA без проверки IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "Chilli XML" + +#: 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 "" +"ChilliSpot будет пытаться авторизовывать всех пользователей, основываясь " +"только на их mac-адресах" + +#: 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 "Coova Chilli" + #: 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 "Конечный IP-адрес DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "IP-адрес шлюза DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "Порт шлюза DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "Начальный IP-адрес DHCP" + +#: 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 "Альтернативный DNS-сервер" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "Предпочитаемый DNS-сервер" + +#: 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 "" +"Максимальное снижение пропускной способности по умолчанию, измеряется в бит/" +"с, то же самое, что и WISPr-Bandwidth-Max-Down." + +#: 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 "" +"Максимальное увеличение пропускной способности по умолчанию, измеряется в " +"бит/с, то же самое, что и WISPr-Bandwidth-Max-Up." + +#: 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 "Запретить аутентификацию MAC-адресов" + +#: 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 "" +"Запретить доступ, включая UAM, к MAC-адресам, которым присвоен Access-Reject" + +#: 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 "Не проверять IP-адрес источника запросов на отключение RADIUS" + +#: 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 "Не предлагать WISPr 1.0 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "Не предлагать WISPr 2.0 XML" + +#: 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 "Динамический IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Включить EAPOL" + +#: 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 "Исполняемый файл для запуска в качестве программы типа CGI" + +#: 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 "Выполняется после запуска сетевого интерфейса TUN/TAP" + +#: 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 "Выполняется после отключения сетевого интерфейса TUN/TAP" + +#: 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 "Аутентификация по стандарту IEEE 802.1x" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "IP-адрес, с которого принимаются запросы RADIUS" + +#: 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 "Режим IPv6" + +#: 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 "" +"Проверять DNS-пакеты и отбрасывать ответы, в которых отсутствуют записи A, " +"CNAME, SOA или MX" + +#: 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 "Завершить сессию IP-адреса" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "Авторизация по MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "Пароль MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "Повторная аутентификация MAC-адреса" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "Суффикс MAC" + +#: 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 "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 "Идентификатор NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "Тип порта NAS" + +#: 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 "Запретить WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "Запретить WISPr 1 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "Запретить WISPr 2 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Авторизация через Open ID" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "Опции для прокси-сервера RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "Опции для TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "Оригинальный URL" + +#: 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 "Программа в стиле inetd для обработки всех запросов UAM" + +#: 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 "RADIUS" + +#: 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 "" +"Повторная аутентификация на основе MAC-адреса при каждом перенаправлении " +"URL-адреса" + +#: 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 "Возвращать Chilli XML вместе с WISPr XML." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193 +msgid "SSID" +msgstr "SSID" + +#: 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 "Отправлять CoovaChilli-OriginalURL в Access-Request" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382 +msgid "Send IP" +msgstr "Отправлять IP-адрес" + +#: 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 "Специальные опции для DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "Специальные опции для MAC-аутентификации" + +#: 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 "" +"Определяет пул динамических IP-адресов. Если этот параметр опущен, " +"используется сетевой адрес, указанный параметром Net" + +#: 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 "" +"Определяет пул статических IP-адресов. При статическом распределении адресов " +"IP-адрес клиента может быть указан сервером RADIUS." + +#: 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 "Статический IP-адрес" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131 +msgid "Strict DNS" +msgstr "Строгий DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233 +msgid "Strict MAC authentication" +msgstr "Строгая аутентификация по MAC-адресу" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "Support 802.1Q VLAN tagged traffic only" +msgstr "Поддержка только тегированного трафика 802.1Q VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "Support for 802.1Q/VLAN network" +msgstr "Поддержка 802.1Q/VLAN" + +#: 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 "Syslog facility" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274 +msgid "TCP MSS" +msgstr "TCP MSS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "TCP-окно" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "TCP port to bind to for authenticating clients" +msgstr "TCP-порт для привязки к нему авторизованных клиентов" + +#: 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-порт для привязки, только ради обслуживания встроенного контента" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266 +msgid "TUN device" +msgstr "Устройство TUN" + +#: 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 "UDP-порт для приема запросов RADIUS" + +#: 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 "UDP-порт для приема запросов на отключение RADIUS" + +#: 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 "Уникальный IP-адрес NAS (nas-ip-address)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "Unique MAC address of the NAS (called-station-id)" +msgstr "Уникальный MAC-адрес NAS (called-station-id)" + +#: 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 "Использовать IPv6" + +#: 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 "VLAN" + +#: 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 "вход WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "гостевой WPA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60 +msgid "access controller for WLAN." +msgstr "контроллер доступа для WLAN." + +#: 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 "iport" + +#: 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 "передается серверу UAM в URL-адресе первоначального перенаправления" + +#: 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 "www исполняемый файл" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "www каталог" + +#~ 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 "Общие настройки" @@ -67,9 +756,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ msgid "Filename to put the process id" #~ msgstr "Имя файла, который будет содержать идентификатор процесса (PID)" -#~ msgid "State directory" -#~ msgstr "Директория состояния" - #~ msgid "TUN/TAP configuration" #~ msgstr "TUN/TAP конфигурация" @@ -98,12 +784,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ 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" @@ -147,9 +827,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ msgid "DHCP end number" #~ msgstr "Конечное значение DHCP" -#~ msgid "DHCP interface" -#~ msgstr "DHCP интерфейс" - #~ msgid "Ethernet interface to listen to for the downlink interface" #~ msgstr "Ethernet интерфейс для прослушивания downlink-интерфеса" @@ -184,9 +861,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ "Разрешить обновление параметров сессии используя 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" @@ -194,9 +868,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ "Пароль администратора для аутентификации пользователя и применения " #~ "настроек 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" @@ -207,24 +878,12 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ 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 атрибута" @@ -262,18 +921,9 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ 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)" @@ -345,9 +995,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ msgid "Proxy port" #~ msgstr "Порт прокси" -#~ msgid "UDP Port to listen to for accepting radius requests" -#~ msgstr "Порт UDP для запросов RADIUS" - #~ msgid "Proxy secret" #~ msgstr "Секрет прокси" @@ -366,17 +1013,11 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ 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 "" @@ -411,19 +1052,9 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ 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 "Прокси пост-аутентификации" @@ -473,11 +1104,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ msgid "UAM homepage" #~ msgstr "Домашняя страница UAM" -#~ msgid "URL of homepage to redirect unauthenticated users to" -#~ msgstr "" -#~ "URL домашней страницы для перенаправления пользователей не прошедших " -#~ "аутентификацию" - #~ msgid "UAM static content port" #~ msgstr "Порт UAM статического контента" @@ -502,15 +1128,9 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ 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" @@ -523,9 +1143,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ msgid "Web content directory" #~ msgstr "Директория Web-контента" -#~ msgid "Directory where embedded local web content is placed" -#~ msgstr "Директория куда будет помещен встроенный Web-контент" - #~ msgid "MAC configuration" #~ msgstr "Настройка MAC" @@ -555,9 +1172,6 @@ msgstr "Аутентификация с помощью UAM и MAC" #~ msgid "Password" #~ msgstr "Пароль" -#~ msgid "Password used when performing MAC authentication" -#~ msgstr "Пароль для MAC аутентификации" - #~ msgid "Suffix" #~ msgstr "Суффикс" diff --git a/applications/luci-app-coovachilli/po/sk/coovachilli.po b/applications/luci-app-coovachilli/po/sk/coovachilli.po index 1fa6b6ae93..d95217f33c 100644 --- a/applications/luci-app-coovachilli/po/sk/coovachilli.po +++ b/applications/luci-app-coovachilli/po/sk/coovachilli.po @@ -8,22 +8,680 @@ 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 "" diff --git a/applications/luci-app-coovachilli/po/sv/coovachilli.po b/applications/luci-app-coovachilli/po/sv/coovachilli.po index fc3d44ab08..e501c4136c 100644 --- a/applications/luci-app-coovachilli/po/sv/coovachilli.po +++ b/applications/luci-app-coovachilli/po/sv/coovachilli.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-11-07 15:53+0000\n" +"PO-Revision-Date: 2024-10-23 12:34+0000\n" "Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/sv/>\n" @@ -10,24 +10,682 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" +"X-Generator: Weblate 5.8.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 "0 betyder obegränsad" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Endast 802.1Q" + +#: 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 "Lösenord för admin" + +#: 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 "Tillåt Lokal MAC-adress" + +#: 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 "Tillåt alla, avvikande RADIER" + +#: 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 "Tillåtna" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237 +msgid "Allowed MACs" +msgstr "Tillåtna MAC-adresser" + +#: 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 "Alla DNS:er" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Alla IP-adresser" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398 +msgid "Authentication port" +msgstr "Port för autentisering" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391 +msgid "Auxiliary server" +msgstr "Reserv-server" + +#: 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 "COA-port" + +#: 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 "Chilli-XML" + +#: 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 "Gränssnitt för DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306 +msgid "DNS Auxiliary" +msgstr "Reserv-DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "Primär DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83 +msgid "Debug" +msgstr "Avlusa" + +#: 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 "Neka MAC-autentisering" + +#: 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 "Domän" + +#: 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 "Dynamisk IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Aktivera EAPOL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75 +msgid "Enabled" +msgstr "Aktiverat" + +#: 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 "Utförs efter att en session har auktoriserats" + +#: 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 "Hemsida" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "IEEE 802.1x authentication" +msgstr "IEEE 802.1x-autentisering" + +#: 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 "IPv6-läge" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124 +msgid "Ignore Success" +msgstr "Ignorera framgång" + +#: 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 "Lyssna" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213 +msgid "Local users" +msgstr "Lokala användare" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223 +msgid "Location Name" +msgstr "Namn på plats" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156 +msgid "Logout IP" +msgstr "Logga ut IP-adress" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "MAC-autentisering" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "Lösenord för MAC-adress" + +#: 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 "Max antalet klienter" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183 +msgid "Max download bandwidth" +msgstr "Maximal bandbredd för hämtningar" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188 +msgid "Max upload bandwidth" +msgstr "Maximal bandbredd för uppladdningar" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423 +msgid "NAS ID" +msgstr "ID för NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197 +msgid "NAS IP" +msgstr "IP-adress för NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "NAS MAC" +msgstr "MAC-adress för NAS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423 +msgid "NAS-Identifier" +msgstr "NAS-identifierare" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "NAS-Port-Typ" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Net" +msgstr "Nät" + +#: 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 "Autentisering med Open ID" + +#: 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 "Alternativ för TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "Original URL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "Password used when performing MAC authentication" +msgstr "Lösenord som används vid MAC-autentisering" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "Port" +msgstr "Port" + +#: 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 "Primär server" + +#: 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 "Proxy-klient" + +#: 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 "Port för Proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482 +msgid "Proxy Secret" +msgstr "Hemlig Proxy" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68 +msgid "RADIUS" +msgstr "RADIE" + +#: 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 "Läs om konfigurationsfilen vid det här intervallet" + +#: 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 "SSID" + +#: 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 "Hemlighet" + +#: 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 "Skicka IP-adresser" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117 +msgid "Server" +msgstr "Server" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62 +msgid "Settings" +msgstr "Inställningar" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334 +msgid "Special options for DHCP" +msgstr "Speciella alternativ för DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "Speciella alternativ för MAC-autentisering" + +#: 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 "Mapp-status" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297 +msgid "Static IP" +msgstr "Statisk IP-adress" + +#: 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 "Strikt MAC-autentisering" + +#: 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 "Stöd för 802.10Q/VLAN-nätverk" + +#: 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 "TCP MSS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "TCP-fönster" + +#: 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 "TUN-enhet" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284 +msgid "TX Q length" +msgstr "TX Q-längd" + +#: 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 "Användargränssnitt" + +#: 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 "Universiell behörighetsmetod" + +#: 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 "Använd IPv6" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133 +msgid "Use status file" +msgstr "Använd status-fil" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195 +msgid "VLAN" +msgstr "VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428 +msgid "WISPr Location ID" +msgstr "Plats-ID för WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432 +msgid "WISPr Location Name" +msgstr "Namn på plats för WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165 +msgid "WISPr Login" +msgstr "WISPr-inloggning" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "WPA-gäster" + +#: 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 "i sekunder" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148 +msgid "iport" +msgstr "iport" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260 +msgid "only" +msgstr "endast" + +#: 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 "port" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207 +msgid "www binary" +msgstr "www-binär" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "www-katalog" diff --git a/applications/luci-app-coovachilli/po/templates/coovachilli.pot b/applications/luci-app-coovachilli/po/templates/coovachilli.pot index a62f83b475..715bad2fca 100644 --- a/applications/luci-app-coovachilli/po/templates/coovachilli.pot +++ b/applications/luci-app-coovachilli/po/templates/coovachilli.pot @@ -1,22 +1,680 @@ 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 "" diff --git a/applications/luci-app-coovachilli/po/tr/coovachilli.po b/applications/luci-app-coovachilli/po/tr/coovachilli.po index fc75dc9641..fd4811f322 100644 --- a/applications/luci-app-coovachilli/po/tr/coovachilli.po +++ b/applications/luci-app-coovachilli/po/tr/coovachilli.po @@ -14,22 +14,680 @@ 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 "" diff --git a/applications/luci-app-coovachilli/po/uk/coovachilli.po b/applications/luci-app-coovachilli/po/uk/coovachilli.po index 782b2e3ad6..2a3fafe5f6 100644 --- a/applications/luci-app-coovachilli/po/uk/coovachilli.po +++ b/applications/luci-app-coovachilli/po/uk/coovachilli.po @@ -3,34 +3,715 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-03-12 09:02+0000\n" -"Last-Translator: Tymofij Lytvynenko <till.svit@gmail.com>\n" +"PO-Revision-Date: 2024-10-17 17:10+0000\n" +"Last-Translator: Max <Prototypem95@users.noreply.hosted.weblate.org>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationscoovachilli/uk/>\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.5.2-dev\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\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 "0 означає необмежений" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "Тільки 802.1Q" + +#: 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 "Конкретна URL-адреса, яку слід вказати у WISPr XML LoginURL" + +#: 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 "Дозволити локальну MAC" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "Дозволити всі сеанси, коли RADIUS недоступний" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "Дозволити всім, за відсутності RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "Дозволити клієнту використовувати будь-яку IP-адресу" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "Дозволити неавторизованим користувачам доступ до будь-якого DNS" + +#: 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 "Дозволені MAC-адреси" + +#: 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 "Завжди відповідати DHCP на широкомовний IP, якщо немає ретрансляції." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "Будь-який DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "Будь-який IP" + +#: 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 "" +"Суворо дотримуватися MAC-автентифікації (ніяких відповідей DHCP, поки не " +"отримаємо відповідь RADIUS)" + +#: 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 "Порт COA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "COA без перевірки IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "Chilli XML" + +#: 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 "" +"ChilliSpot спробує автентифікувати всіх користувачів лише на основі їхньої " +"mac-адреси" + +#: 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 "Coova Chilli" #: 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 "Кінцевий DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "IP шлюзу DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "Порт шлюзу DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "Початковий DHCP" + +#: 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 "Допоміжний DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "Основний DNS" + +#: 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 "" +"За замовчуванням максимальна ширина смуги пропускання встановлюється в бітах " +"на секунду, так само, як і WISPr-Bandwidth-Max-Down." + +#: 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 "" +"За замовчуванням максимальна пропускна здатність встановлюється у бітах на " +"секунду, так само, як і WISPr-Bandwidth-Max-Up." + +#: 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 "Заборонити автентифікацію за MAC-адресою" + +#: 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 "" +"Заборонити доступ (навіть UAM) до MAC-адрес, для яких задано Access-Reject" + +#: 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 "Не перевіряти IP-адресу джерела запитів на відключення RADIUS" + +#: 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 "Не пропонувати WISPr 1.0 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "Не пропонувати WISPr 2.0 XML" + +#: 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 "Динамічна IP-адреса" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "Увімкнути EAPOL" + +#: 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 "Виконуваний файл для запуску як програма типу CGI" + +#: 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 "Виконується після виклику мережевого інтерфейсу TUN/TAP" + +#: 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 "Виконується після вилучення мережевого інтерфейсу TUN/TAP" + +#: 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 "Автентифікація IEEE 802.1x" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "IP-адреса, з якої приймаються RADIUS-запити" + +#: 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 "Режим IPv6" + +#: 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 "" +"Перевіряти DNS-пакети та відкидати відповіді з будь-якими записами, що не " +"належать до A, CNAME, SOA або MX" + +#: 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 "IP-адреса виходу з системи" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "Автентифікація за MAC-адресою" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "MAC пароль" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "Повторна автентифікація MAC-адреси" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "Суфікс MAC" + +#: 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 "NAS-ідентифікатор" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "NAS-Port-Type" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287 +msgid "Net" +msgstr "Net" + +#: 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 "Без WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "Без WISPr 1 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "Без WISPr 2 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Open ID Auth" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "Параметри для RADIUS-проксі" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "Параметри для TUN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "Оригінальна URL-адреса" + +#: 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 "Програма у стилі inetd для обробки всіх uam-запитів" + +#: 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 "RADIUS" + +#: 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 "" +"Повторна автентифікація на основі MAC-адреси для кожного початкового " +"перенаправлення URL-адреси" + +#: 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 "Повернути так званий Chilli XML разом з WISPr XML." + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193 +msgid "SSID" +msgstr "SSID" + +#: 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 "Надіслати CoovaChilli-OriginalURL у запиті на доступ" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382 +msgid "Send IP" +msgstr "Надіслати IP-адресу" + +#: 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 "Спеціальні параметри для DHCP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "Спеціальні параметри для автентифікації за MAC-адресою" + +#: 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 "" +"Вказує пул динамічних IP-адрес. Якщо цей параметр не вказано, буде " +"використано мережеву адресу, вказану в параметрі Мережа" + +#: 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 "" +"Вказує пул статичних IP-адрес. При виділенні статичної адреси IP-адреса " +"клієнта може бути вказана RADIUS-сервером." + +#: 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 "Статична IP-адреса" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131 +msgid "Strict DNS" +msgstr "Суворий DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233 +msgid "Strict MAC authentication" +msgstr "Сувора автентифікація за MAC-адресою" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "Support 802.1Q VLAN tagged traffic only" +msgstr "Підтримка лише трафіку з тегами 802.1Q VLAN" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "Support for 802.1Q/VLAN network" +msgstr "Підтримка мережі 802.1Q/VLAN" + +#: 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 "TCP MSS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "TCP-вікно" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "TCP port to bind to for authenticating clients" +msgstr "TCP-порт, до якого слід прив'язати автентифікацію клієнтів" + +#: 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-порт, до якого слід прив'язати лише обслуговування вбудованого вмісту" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266 +msgid "TUN device" +msgstr "TUN-пристрій" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284 +msgid "TX Q length" +msgstr "Довжина TX Q" + +#: 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 "UDP-порт, який прослуховувати для прийому RADIUS-запитів" + +#: 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 "UDP-порт, який прослуховувати для прийому запитів на відключення RADIUS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210 +msgid "UI" +msgstr "UI" + +#: 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 "Унікальна IP-адреса мережевого сховища (nas-ip-адреса)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "Unique MAC address of the NAS (called-station-id)" +msgstr "Унікальна MAC-адреса мережевого сховища (called-station-id)" + +#: 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 "Використовувати IPv6" + +#: 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 "VLAN" + +#: 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 "WISPr Логін" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "Гості WPA" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60 +msgid "access controller for WLAN." +msgstr "контролер доступу до WLAN." + +#: 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 "iport" + +#: 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 "передається на сервер UAM у початковій URL-адресі перенаправлення" + +#: 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 +#, fuzzy +msgid "www binary" +msgstr "www binary" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "каталог www" diff --git a/applications/luci-app-coovachilli/po/vi/coovachilli.po b/applications/luci-app-coovachilli/po/vi/coovachilli.po index 3362869bb7..746c4965c7 100644 --- a/applications/luci-app-coovachilli/po/vi/coovachilli.po +++ b/applications/luci-app-coovachilli/po/vi/coovachilli.po @@ -16,26 +16,703 @@ 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" @@ -66,9 +743,6 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -115,15 +789,9 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -170,9 +838,6 @@ msgstr "Xác thực UAM và MAC" #~ 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 " @@ -214,9 +879,6 @@ msgstr "Xác thực UAM và MAC" #~ "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" @@ -224,9 +886,6 @@ msgstr "Xác thực UAM và MAC" #~ "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" @@ -237,25 +896,12 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -297,18 +943,9 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -387,9 +1024,6 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -408,15 +1042,9 @@ msgstr "Xác thực UAM và MAC" #~ 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)" @@ -424,9 +1052,6 @@ msgstr "Xác thực UAM và MAC" #~ "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)" @@ -439,20 +1064,10 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -490,20 +1105,10 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -542,10 +1147,6 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -570,10 +1171,6 @@ msgstr "Xác thực UAM và MAC" #~ 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" @@ -606,10 +1203,6 @@ msgstr "Xác thực UAM và MAC" #~ 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" diff --git a/applications/luci-app-coovachilli/po/yua/coovachilli.po b/applications/luci-app-coovachilli/po/yua/coovachilli.po new file mode 100644 index 0000000000..0b1029e2c0 --- /dev/null +++ b/applications/luci-app-coovachilli/po/yua/coovachilli.po @@ -0,0 +1,1237 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2024-09-24 00:39+0000\n" +"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n" +"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscoovachilli/yua/>\n" +"Language: yua\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-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/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/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/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 "General CoovaChilli settings" +#~ msgstr "General CoovaChilli settings" + +#~ msgid "Command socket" +#~ msgstr "Command socket" + +#~ msgid "UNIX socket used for communication with chilli_query" +#~ msgstr "UNIX socket used for communication with chilli_query" + +#~ msgid "Config refresh interval" +#~ msgstr "Config refresh interval" + +#~ msgid "" +#~ "Re-read configuration file and do DNS lookups every interval seconds. " +#~ "This has the same effect as sending the HUP signal. If interval is 0 " +#~ "(zero) this feature is disabled. " +#~ msgstr "" +#~ "Re-read configuration file and do DNS lookups every interval seconds. " +#~ "This has the same effect as sending the HUP signal. If interval is 0 " +#~ "(zero) this feature is disabled. " + +#~ msgid "Pid file" +#~ msgstr "Pid file" + +#~ msgid "Filename to put the process id" +#~ msgstr "Filename to put the process id" + +#~ msgid "Directory of non-volatile data" +#~ msgstr "Directory of non-volatile data" + +#~ msgid "TUN/TAP configuration" +#~ msgstr "TUN/TAP configuration" + +#~ msgid "Network/Tun configuration" +#~ msgstr "Network/Tun configuration" + +#~ msgid "Network down script" +#~ msgstr "Network down script" + +#~ msgid "" +#~ "Script executed after a session has moved from authorized state to " +#~ "unauthorized" +#~ msgstr "" +#~ "Script executed after a session has moved from authorized state to " +#~ "unauthorized" + +#~ msgid "Network up script" +#~ msgstr "Network up script" + +#~ msgid "Script executed after the tun network interface has been brought up" +#~ msgstr "Script executed after the tun network interface has been brought up" + +#~ msgid "Primary DNS Server" +#~ msgstr "Primary DNS Server" + +#~ msgid "Secondary DNS Server" +#~ msgstr "Secondary DNS Server" + +#~ msgid "Domain name" +#~ msgstr "Domain name" + +#~ msgid "" +#~ "Is used to inform the client about the domain name to use for DNS lookups" +#~ msgstr "" +#~ "Is used to inform the client about the domain name to use for DNS lookups" + +#~ msgid "Dynamic IP address pool" +#~ msgstr "Dynamic IP address pool" + +#~ msgid "Specifies a pool of dynamic IP addresses" +#~ msgstr "Specifies a pool of dynamic IP addresses" + +#~ 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 "" +#~ "Script executed after the TUN/TAP network interface has been brought up" +#~ msgstr "" +#~ "Script executed after the TUN/TAP network interface has been brought up" + +#~ msgid "Uplink subnet" +#~ msgstr "Uplink subnet" + +#~ msgid "Network address of the uplink interface (CIDR notation)" +#~ msgstr "Network address of the uplink interface (CIDR notation)" + +#~ msgid "Static IP address pool" +#~ msgstr "Static IP address pool" + +#~ msgid "Specifies a pool of static IP addresses" +#~ msgstr "Specifies a pool of static IP addresses" + +#~ msgid "TUN/TAP device" +#~ msgstr "TUN/TAP device" + +#~ msgid "The specific device to use for the TUN/TAP interface" +#~ msgstr "The specific device to use for the TUN/TAP interface" + +#~ msgid "TX queue length" +#~ msgstr "TX queue length" + +#~ msgid "The TX queue length to set on the TUN/TAP interface" +#~ msgstr "The TX queue length to set on the TUN/TAP interface" + +#~ msgid "Use TAP device" +#~ msgstr "Use TAP device" + +#~ msgid "Use the TAP interface instead of TUN" +#~ msgstr "Use the TAP interface instead of TUN" + +#~ msgid "DHCP configuration" +#~ msgstr "DHCP configuration" + +#~ msgid "Set DHCP options for connecting clients" +#~ msgstr "Set DHCP options for connecting clients" + +#~ msgid "DHCP end number" +#~ msgstr "DHCP end number" + +#~ msgid "Where to stop assigning IP addresses (default 254)" +#~ msgstr "Where to stop assigning IP addresses (default 254)" + +#~ msgid "Ethernet interface to listen to for the downlink interface" +#~ msgstr "Ethernet interface to listen to for the downlink interface" + +#~ msgid "Listen MAC address" +#~ msgstr "Listen MAC address" + +#~ msgid "" +#~ "MAC address to listen to. If not specified the MAC address of the " +#~ "interface will be used" +#~ msgstr "" +#~ "MAC address to listen to. If not specified the MAC address of the " +#~ "interface will be used" + +#~ msgid "DHCP start number" +#~ msgstr "DHCP start number" + +#~ msgid "Where to start assigning IP addresses (default 10)" +#~ msgstr "Where to start assigning IP addresses (default 10)" + +#~ msgid "Enable IEEE 802.1x" +#~ msgstr "Enable IEEE 802.1x" + +#~ msgid "Enable IEEE 802.1x authentication and listen for EAP requests" +#~ msgstr "Enable IEEE 802.1x authentication and listen for EAP requests" + +#~ msgid "Leasetime" +#~ msgstr "Leasetime" + +#~ msgid "Use a DHCP lease of seconds (default 600)" +#~ msgstr "Use a DHCP lease of seconds (default 600)" + +#~ msgid "Allow session update through RADIUS" +#~ msgstr "Allow session update through RADIUS" + +#~ msgid "" +#~ "Allow updating of session parameters with RADIUS attributes sent in " +#~ "Accounting-Response" +#~ msgstr "" +#~ "Allow updating of session parameters with RADIUS attributes sent in " +#~ "Accounting-Response" + +#~ msgid "" +#~ "Password to use for Administrative-User authentication in order to pick " +#~ "up chilli configurations and establish a device \"system\" session" +#~ msgstr "" +#~ "Password to use for Administrative-User authentication in order to pick " +#~ "up chilli configurations and establish a device \"system\" session" + +#~ msgid "" +#~ "User-name to use for Administrative-User authentication in order to pick " +#~ "up chilli configurations and establish a device \"system\" session" +#~ msgstr "" +#~ "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 "RADIUS disconnect port" +#~ msgstr "RADIUS disconnect port" + +#~ msgid "Value to use in RADIUS NAS-IP-Address attribute" +#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute" + +#~ 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 "Allow OpenID authentication" +#~ msgstr "Allow OpenID authentication" + +#~ msgid "" +#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-" +#~ "openidauth in RADIUS Access-Requests" +#~ msgstr "" +#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-" +#~ "openidauth in RADIUS Access-Requests" + +#~ msgid "RADIUS accounting port" +#~ msgstr "RADIUS accounting port" + +#~ msgid "" +#~ "The UDP port number to use for radius accounting requests (default 1813)" +#~ msgstr "" +#~ "The UDP port number to use for radius accounting requests (default 1813)" + +#~ msgid "RADIUS authentication port" +#~ msgstr "RADIUS authentication port" + +#~ msgid "" +#~ "The UDP port number to use for radius authentication requests (default " +#~ "1812)" +#~ msgstr "" +#~ "The UDP port number to use for radius authentication requests (default " +#~ "1812)" + +#~ msgid "Option radiuscalled" +#~ msgstr "Option radiuscalled" + +#~ msgid "RADIUS listen address" +#~ msgstr "RADIUS listen address" + +#~ msgid "Local interface IP address to use for the radius interface" +#~ msgstr "Local interface IP address to use for the radius interface" + +#~ msgid "RADIUS location ID" +#~ msgstr "RADIUS location ID" + +#~ msgid "RADIUS location name" +#~ msgstr "RADIUS location name" + +#~ msgid "Network access server identifier" +#~ msgstr "Network access server identifier" + +#~ msgid "Option radiusnasip" +#~ msgstr "Option radiusnasip" + +#~ msgid "NAS port type" +#~ msgstr "NAS port type" + +#~ msgid "" +#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)" +#~ msgstr "" +#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)" + +#~ msgid "Send RADIUS VSA" +#~ msgstr "Send RADIUS VSA" + +#~ msgid "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request" +#~ msgstr "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request" + +#~ msgid "RADIUS secret" +#~ msgstr "RADIUS secret" + +#~ msgid "Radius shared secret for both servers" +#~ msgstr "Radius shared secret for both servers" + +#~ msgid "RADIUS server 1" +#~ msgstr "RADIUS server 1" + +#~ msgid "The IP address of radius server 1" +#~ msgstr "The IP address of radius server 1" + +#~ msgid "RADIUS server 2" +#~ msgstr "RADIUS server 2" + +#~ msgid "The IP address of radius server 2" +#~ msgstr "The IP address of radius server 2" + +#~ msgid "Swap octets" +#~ msgstr "Swap octets" + +#~ msgid "" +#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related " +#~ "to RADIUS attribtues" +#~ msgstr "" +#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related " +#~ "to RADIUS attribtues" + +#~ msgid "Allow WPA guests" +#~ msgstr "Allow WPA guests" + +#~ msgid "" +#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-" +#~ "guests in RADIUS Access-Requests" +#~ msgstr "" +#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-" +#~ "guests in RADIUS Access-Requests" + +#~ msgid "Proxy client" +#~ msgstr "Proxy client" + +#~ msgid "" +#~ "IP address from which radius requests are accepted. If omitted the server " +#~ "will not accept radius requests" +#~ msgstr "" +#~ "IP address from which radius requests are accepted. If omitted the server " +#~ "will not accept radius requests" + +#~ msgid "Proxy listen address" +#~ msgstr "Proxy listen address" + +#~ msgid "Local interface IP address to use for accepting radius requests" +#~ msgstr "Local interface IP address to use for accepting radius requests" + +#~ msgid "Proxy port" +#~ msgstr "Proxy port" + +#~ msgid "Proxy secret" +#~ msgstr "Proxy secret" + +#~ msgid "Radius shared secret for clients" +#~ msgstr "Radius shared secret for clients" + +#~ msgid "UAM configuration" +#~ msgstr "UAM configuration" + +#~ msgid "Unified Configuration Method settings" +#~ msgstr "Unified Configuration Method settings" + +#~ msgid "Use Chilli XML" +#~ msgstr "Use Chilli XML" + +#~ 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 unless otherwise set by RADIUS (defaults to 0)" +#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)" + +#~ msgid "" +#~ "Default interim-interval for RADIUS accounting unless otherwise set by " +#~ "RADIUS (defaults to 0)" +#~ msgstr "" +#~ "Default interim-interval for RADIUS accounting unless otherwise set by " +#~ "RADIUS (defaults to 0)" + +#~ msgid "" +#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)" +#~ msgstr "" +#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)" + +#~ msgid "Inspect DNS traffic" +#~ msgstr "Inspect DNS traffic" + +#~ msgid "" +#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX " +#~ "records to prevent dns tunnels (experimental)" +#~ msgstr "" +#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX " +#~ "records to prevent dns tunnels (experimental)" + +#~ msgid "Local users file" +#~ msgstr "Local users file" + +#~ msgid "" +#~ "A colon separated file containing usernames and passwords of locally " +#~ "authenticated users" +#~ msgstr "" +#~ "A colon separated file containing usernames and passwords of locally " +#~ "authenticated users" + +#~ msgid "Location name" +#~ msgstr "Location name" + +#~ msgid "Human readable location name used in JSON interface" +#~ msgstr "Human readable location name used in JSON interface" + +#~ msgid "Do not redirect to UAM server" +#~ msgstr "Do not redirect to UAM server" + +#~ msgid "Do not do WISPr" +#~ msgstr "Do not do WISPr" + +#~ msgid "Post auth proxy" +#~ msgstr "Post auth proxy" + +#~ msgid "" +#~ "Used with postauthproxyport to define a post authentication HTTP proxy " +#~ "server" +#~ msgstr "" +#~ "Used with postauthproxyport to define a post authentication HTTP proxy " +#~ "server" + +#~ msgid "Post auth proxy port" +#~ msgstr "Post auth proxy port" + +#~ msgid "" +#~ "Used with postauthproxy to define a post authentication HTTP proxy server" +#~ msgstr "" +#~ "Used with postauthproxy to define a post authentication HTTP proxy server" + +#~ msgid "Allowed resources" +#~ msgstr "Allowed resources" + +#~ msgid "List of resources the client can access without first authenticating" +#~ msgstr "" +#~ "List of resources the client can access without first authenticating" + +#~ msgid "Allow any DNS server" +#~ msgstr "Allow any DNS server" + +#~ msgid "Allow any DNS server for unauthenticated clients" +#~ msgstr "Allow any DNS server for unauthenticated clients" + +#~ msgid "Allow any IP address" +#~ msgstr "Allow any IP address" + +#~ msgid "" +#~ "Allow clients to use any IP settings they wish by spoofing ARP " +#~ "(experimental)" +#~ msgstr "" +#~ "Allow clients to use any IP settings they wish by spoofing ARP " +#~ "(experimental)" + +#~ msgid "Allowed domains" +#~ msgstr "Allowed domains" + +#~ msgid "" +#~ "Defines a list of domain names to automatically add to the walled garden" +#~ msgstr "" +#~ "Defines a list of domain names to automatically add to the walled garden" + +#~ msgid "UAM homepage" +#~ msgstr "UAM homepage" + +#~ msgid "UAM static content port" +#~ msgstr "UAM static content port" + +#~ msgid "UAM listening address" +#~ msgstr "UAM listening address" + +#~ msgid "IP address to listen to for authentication of clients" +#~ msgstr "IP address to listen to for authentication of clients" + +#~ msgid "UAM logout IP" +#~ msgstr "UAM logout IP" + +#~ msgid "" +#~ "Use this IP address to instantly logout a client accessing it (defaults " +#~ "to 1.1.1.1)" +#~ msgstr "" +#~ "Use this IP address to instantly logout a client accessing it (defaults " +#~ "to 1.1.1.1)" + +#~ msgid "UAM listening port" +#~ msgstr "UAM listening port" + +#~ msgid "TCP port to bind to for authenticating clients (default 3990)" +#~ msgstr "TCP port to bind to for authenticating clients (default 3990)" + +#~ msgid "UAM secret" +#~ msgstr "UAM secret" + +#~ msgid "Shared secret between uamserver and chilli" +#~ msgstr "Shared secret between uamserver and chilli" + +#~ msgid "UAM server" +#~ msgstr "UAM server" + +#~ msgid "UAM user interface" +#~ msgstr "UAM user interface" + +#~ msgid "" +#~ "An init.d style program to handle local content on the uamuiport web " +#~ "server" +#~ msgstr "" +#~ "An init.d style program to handle local content on the uamuiport web " +#~ "server" + +#~ msgid "" +#~ "Write the status of clients in a non-volatile state file (experimental)" +#~ msgstr "" +#~ "Write the status of clients in a non-volatile state file (experimental)" + +#~ msgid "WISPr login url" +#~ msgstr "WISPr login url" + +#~ msgid "Specific URL to be given in WISPr XML LoginURL" +#~ msgstr "Specific URL to be given in WISPr XML LoginURL" + +#~ msgid "CGI program" +#~ msgstr "CGI program" + +#~ msgid "" +#~ "Executable to run as a CGI type program (like haserl) for URLs with " +#~ "extension .chi" +#~ msgstr "" +#~ "Executable to run as a CGI type program (like haserl) for URLs with " +#~ "extension .chi" + +#~ msgid "Web content directory" +#~ msgstr "Web content directory" + +#~ msgid "MAC configuration" +#~ msgstr "MAC configuration" + +#~ msgid "Configure MAC authentication" +#~ msgstr "Configure MAC authentication" + +#~ msgid "Allowed MAC addresses" +#~ msgstr "Allowed MAC addresses" + +#~ msgid "List of MAC addresses for which MAC authentication will be performed" +#~ msgstr "" +#~ "List of MAC addresses for which MAC authentication will be performed" + +#~ msgid "Authenticate locally allowed MACs" +#~ msgstr "Authenticate locally allowed MACs" + +#~ msgid "Authenticate allowed MAC addresses without the use of RADIUS" +#~ msgstr "Authenticate allowed MAC addresses without the use of RADIUS" + +#~ msgid "Enable MAC authentification" +#~ msgstr "Enable MAC authentification" + +#~ msgid "Try to authenticate all users based on their mac address alone" +#~ msgstr "Try to authenticate all users based on their mac address alone" + +#~ msgid "Password" +#~ msgstr "Password" + +#~ msgid "Suffix" +#~ msgstr "Suffix" + +#~ msgid "coovachilli_macauth_macsuffix_desc" +#~ msgstr "" +#~ "Suffix to add to the MAC address in order to form the User-Name, which is " +#~ "sent to the radius server" diff --git a/applications/luci-app-coovachilli/po/zh_Hans/coovachilli.po b/applications/luci-app-coovachilli/po/zh_Hans/coovachilli.po index 63dc336fc6..1e8ffdc9bd 100644 --- a/applications/luci-app-coovachilli/po/zh_Hans/coovachilli.po +++ b/applications/luci-app-coovachilli/po/zh_Hans/coovachilli.po @@ -5,33 +5,692 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-05-10 12:47+0000\n" -"Last-Translator: gw826943555 <gw826943555@qq.com>\n" -"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationscoovachilli/zh_Hans/>\n" +"PO-Revision-Date: 2024-10-17 17:10+0000\n" +"Last-Translator: try496 <pinghejk@gmail.com>\n" +"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/" +"projects/openwrt/luciapplicationscoovachilli/zh_Hans/>\n" "Language: zh_Hans\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.8-rc\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 "0 表示无限" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "802.1Q" +msgstr "802.1Q" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "802.1Q only" +msgstr "仅 802.1Q" + +#: 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 "在 WISPr XML 中指定的具体登录 URL" + +#: 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 "允许本地 MAC 地址" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all sessions when RADIUS is not available" +msgstr "当 RADIUS 无法访问时允许所有连接" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452 +msgid "Allow all, absent RADIUS" +msgstr "RADIUS 缺失时允许所有连接" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Allow client to use any IP Address" +msgstr "允许客户端使用任何 IP 地址" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Allow unauthenticated users access to any DNS" +msgstr "允许未认证用户访问任何 DNS" + +#: 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 "允许的 MAC 地址" + +#: 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 "当没有 DHCP 中继时,始终向广播 IP 地址响应 DHCP 请求。" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123 +msgid "Any DNS" +msgstr "任意 DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129 +msgid "Any IP" +msgstr "任意 IP" + +#: 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 "严格进行 MAC 认证(在收到 RADIUS 响应之前不回复 DHCP 请求)" + +#: 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 "CoA 端口" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458 +msgid "COA no IP check" +msgstr "CoA 不检查 IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128 +msgid "Chilli XML" +msgstr "Chilli XML" + +#: 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 "将尝试仅基于用户的 MAC 地址来认证所有用户" + +#: 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 "Coova Chilli" #: 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 "DHCP 结束" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360 +msgid "DHCP Gateway IP" +msgstr "DHCP 网关 IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365 +msgid "DHCP Gateway Port" +msgstr "DHCP 网关端口" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350 +msgid "DHCP Start" +msgstr "DHCP 起始" + +#: 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 "DNS 辅助" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301 +msgid "DNS Primary" +msgstr "DNS 主服务器" + +#: 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 "默认的最大下行带宽以比特每秒(bps)设置,与 WISPr-Bandwidth-Max-Down 相同。" + +#: 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 "默认的最大上行带宽以比特每秒(bps)设置,与 WISPr-Bandwidth-Max-Up 相同。" + +#: 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 "拒绝 MAC 认证" + +#: 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 "拒绝访问(即使是通过 UAM)那些收到 Access-Reject 的 MAC 地址" + +#: 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 "不对 RADIUS 断开请求的源 IP 地址进行检查" + +#: 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 "不提供 WISPr 1.0 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "Do not offer WISPr 2.0 XML" +msgstr "不提供 WISPr 2.0 XML" + +#: 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 "动态 IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370 +msgid "Enable EAPOL" +msgstr "启用 EAPOL" + +#: 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 "作为 CGI 类型程序运行的可执行文件" + +#: 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 "在 TUN/TAP 网络接口被激活后执行" + +#: 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 "在 TUN/TAP 网络接口被关闭后执行" + +#: 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 "IEEE 802.1x 认证" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477 +msgid "IP address from which RADIUS requests are accepted" +msgstr "接受 RADIUS 请求的 IP 地址" + +#: 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 "IPv6 模式" + +#: 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 "检查 DNS 数据包并丢弃包含除 A、CNAME、SOA 或 MX 记录以外的任何记录的响应" + +#: 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 "登出 IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232 +msgid "MAC authentication" +msgstr "MAC 认证" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241 +msgid "MAC password" +msgstr "MAC 密码" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235 +msgid "MAC re-authentication" +msgstr "MAC 重新认证" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245 +msgid "MAC suffix" +msgstr "MAC 后缀" + +#: 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 "NAS 标识符" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436 +msgid "NAS-Port-Type" +msgstr "NAS 端口类型" + +#: 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 "禁用 WISPr" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126 +msgid "No WISPr 1 XML" +msgstr "禁用 WISPr 1 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127 +msgid "No WISPr 2 XML" +msgstr "禁用 WISPr 2 XML" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449 +msgid "Open ID Auth" +msgstr "Open ID 认证" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462 +msgid "Options for RADIUS proxy" +msgstr "RADIUS 代理的选项" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253 +msgid "Options for TUN" +msgstr "TUN 的选项" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447 +msgid "Original URL" +msgstr "初始 URL" + +#: 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 "以 inetd 方式编写的程序来处理所有 UAM 请求" + +#: 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 "RADIUS" + +#: 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 "每次初始 URL 重定向时根据 MAC 地址重新认证" + +#: 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 "返回 Chilli XML 以及 WISPr XML。" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193 +msgid "SSID" +msgstr "SSID" + +#: 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 "在访问请求中发送 CoovaChilli-OriginalURL" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382 +msgid "Send IP" +msgstr "发送 IP" + +#: 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 "DHCP 的特殊选项" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228 +msgid "Special options for MAC authentication" +msgstr "MAC 认证的特殊选项" + +#: 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 "指定一个动态 IP 地址池。如果省略此选项,则使用 Net 选项指定的网络地址" + +#: 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 "指定一个静态 IP 地址池。在使用静态地址分配时,RADIUS 服务器可以指定客户端的 " +"IP 地址。" + +#: 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 "静态 IP" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131 +msgid "Strict DNS" +msgstr "严格 DNS" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233 +msgid "Strict MAC authentication" +msgstr "严格的 MAC 认证" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373 +msgid "Support 802.1Q VLAN tagged traffic only" +msgstr "仅支持 802.1Q VLAN 标记流量" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372 +msgid "Support for 802.1Q/VLAN network" +msgstr "支持 802.1Q/VLAN 网络" + +#: 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 "TCP 最大报文段大小" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269 +msgid "TCP Window" +msgstr "TCP 窗口" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144 +msgid "TCP port to bind to for authenticating clients" +msgstr "用于认证客户端的 TCP 绑定端口" + +#: 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 端口" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266 +msgid "TUN device" +msgstr "TUN 设备" + +#: 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 "用于接收 RADIUS 请求的 UDP 监听端口" + +#: 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 "用于接收 RADIUS 断开请求的 UDP 监听端口" + +#: 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 "用于认证客户端的 Web 服务器 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 "NAS 的唯一 IP 地址(nas-ip-address)" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201 +msgid "Unique MAC address of the NAS (called-station-id)" +msgstr "NAS 的唯一 MAC 地址(called-station-id)" + +#: 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 "使用 IPv6" + +#: 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 "VLAN" + +#: 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 "WISPr 登录" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450 +msgid "WPA guests" +msgstr "WPA 访客" + +#: 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 "iport" + +#: 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 "在初始重定向 URL 中传递给 UAM 服务器" + +#: 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 "Web 二进制文件" + +#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205 +msgid "www directory" +msgstr "Web 目录" diff --git a/applications/luci-app-coovachilli/po/zh_Hant/coovachilli.po b/applications/luci-app-coovachilli/po/zh_Hant/coovachilli.po index 9203de395e..c08ecf3011 100644 --- a/applications/luci-app-coovachilli/po/zh_Hant/coovachilli.po +++ b/applications/luci-app-coovachilli/po/zh_Hant/coovachilli.po @@ -4,33 +4,691 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-01-09 15:32+0000\n" -"Last-Translator: akibou <jinwenxin1997@icloud.com>\n" -"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationscoovachilli/zh_Hant/>\n" +"PO-Revision-Date: 2024-11-18 14:09+0000\n" +"Last-Translator: 少年ウィンド <k236michaeimm@gmail.com>\n" +"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/" +"projects/openwrt/luciapplicationscoovachilli/zh_Hant/>\n" "Language: zh_Hant\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4.1-dev\n" +"X-Generator: Weblate 5.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 "802.1Q" + +#: 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 "" diff --git a/applications/luci-app-coovachilli/root/etc/config/coovachilli b/applications/luci-app-coovachilli/root/etc/config/coovachilli deleted file mode 100644 index 0b6be2c593..0000000000 --- a/applications/luci-app-coovachilli/root/etc/config/coovachilli +++ /dev/null @@ -1,243 +0,0 @@ -############################################################################## -# -# 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 diff --git a/applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json b/applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json index 5178a59894..90390a8b50 100644 --- a/applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json +++ b/applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json @@ -1,44 +1,12 @@ { "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 } - } } } diff --git a/applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json b/applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json index a3643b5311..e746e124f8 100644 --- a/applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json +++ b/applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json @@ -2,7 +2,10 @@ "luci-app-coovachilli": { "description": "Grant UCI access for luci-app-coovachilli", "read": { - "uci": [ "coovachilli" ] + "uci": [ "coovachilli" ], + "ubus": { + "luci-rpc": [ "getNetworkDevices" ] + } }, "write": { "uci": [ "coovachilli" ] |