diff options
author | Sven Roederer <freifunk@it-solutions.geroedel.de> | 2019-02-03 14:13:35 +0100 |
---|---|---|
committer | Sven Roederer <freifunk@it-solutions.geroedel.de> | 2019-02-13 21:23:34 +0100 |
commit | 4654ba92c3999d84b08211f05d2ccb5ea9da731b (patch) | |
tree | 06cedf8e8badc0ce584d8bd5e97fab7476c81549 /applications/luci-app-meshwizard | |
parent | eda8f02dac3caa4d0f52cd1e860d7a392c295df3 (diff) |
treewide: move freifunk-related packages to separate repo
Even Freifunk was one of the major factory to create the LuCI-system, it's
now only a very small part of LuCI. LuCI has become a much bigger thing
and it seems that it's time to move the packages only relating to Freifunk
into it's own feed.
On the mailinglist it was discussed [1] and a repo below the general
Freifunk team on github was created.
This commit removes all packages that will be hosted in the new repo [2]
1 - http://lists.freifunk.net/pipermail/wlannews-freifunk.net/2019-February/004818.html
2 - https://github.com/freifunk/openwrt-packages
Signed-off-by: Sven Roederer <freifunk@it-solutions.geroedel.de>
Diffstat (limited to 'applications/luci-app-meshwizard')
30 files changed, 0 insertions, 4361 deletions
diff --git a/applications/luci-app-meshwizard/Makefile b/applications/luci-app-meshwizard/Makefile deleted file mode 100644 index fb2610eb0..000000000 --- a/applications/luci-app-meshwizard/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=Shellscript based wizard to setup mesh networks -LUCI_DEPENDS:=+meshwizard - -include ../../luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua b/applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua deleted file mode 100644 index 0ad76b521..000000000 --- a/applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua +++ /dev/null @@ -1,9 +0,0 @@ --- Copyright 2011 Manuel Munz <freifunk somakoma de> --- Licensed to the public under the Apache License 2.0. - -module "luci.controller.meshwizard" - -function index() - entry({"admin", "freifunk", "meshwizard"}, cbi("freifunk/meshwizard"), _("Mesh Wizard"), 40) -end - diff --git a/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua b/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua deleted file mode 100644 index 62ce25eff..000000000 --- a/applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua +++ /dev/null @@ -1,196 +0,0 @@ --- wizard rewrite wip - -local uci = require "luci.model.uci".cursor() -local sys = require "luci.sys" -local util = require "luci.util" -local ip = require "luci.ip" - -local community = "profile_" .. (uci:get("freifunk", "community", "name") or "Freifunk") -local mesh_network = ip.IPv4(uci:get_first(community, "community", "mesh_network") or "10.0.0.0/8") -local community_ipv6 = uci:get_first(community, "community", "ipv6") or 0 -local community_ipv6mode = uci:get_first(community, "community", "ipv6_config") or "static" -local meshkit_ipv6 = uci:get("meshwizard", "ipv6", "enabled") or 0 -local community_vap = uci:get_first(community, "community", "vap") or 0 - -m = Map("meshwizard", translate("Wizard"), translate("This wizard will assist you in setting up your router for Freifunk " .. - "or another similar wireless community network.")) - -n = m:section(NamedSection, "netconfig", nil, translate("Interfaces")) -n.anonymous = true - --- common functions - -function cbi_configure(device) - local configure = n:taboption(device, Flag, device .. "_config", translate("Configure this interface"), - translate("Note: this will set up this interface for mesh operation, i.e. add it to zone 'freifunk' and enable olsr.")) -end - -function cbi_ip4addr(device) - local ip4addr = n:taboption(device, Value, device .. "_ip4addr", translate("Mesh IP address"), - translate("This is a unique address in the mesh (e.g. 10.1.1.1) and has to be registered at your local community.")) - ip4addr:depends(device .. "_config", 1) - ip4addr.datatype = "ip4addr" - function ip4addr.validate(self, value) - local x = ip.IPv4(value) - if mesh_network:contains(x) then - return value - else - return nil, translate("The given IP address is not inside the mesh network range ") .. - "(" .. mesh_network:string() .. ")." - end - end -end - -function cbi_ip6addr(device) - local ip6addr = n:taboption(device, Value, device .. "_ip6addr", translate("Mesh IPv6 address"), - translate("This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and has to be registered at your local community.")) - ip6addr:depends(device .. "_config", 1) - ip6addr.datatype = "ip6addr" -end - - -function cbi_dhcp(device) - local dhcp = n:taboption(device, Flag, device .. "_dhcp", translate("Enable DHCP"), - translate("DHCP will automatically assign ip addresses to clients")) - dhcp:depends(device .. "_config", 1) - dhcp.rmempty = true -end - -function cbi_ra(device) - local ra = n:taboption(device, Flag, device .. "_ipv6ra", translate("Enable RA"), - translate("Send router advertisements on this device.")) - ra:depends(device .. "_config", 1) - ra.rmempty = true -end - -function cbi_dhcprange(device) - local dhcprange = n:taboption(device, Value, device .. "_dhcprange", translate("DHCP IP range"), - translate("The IP range from which clients are assigned ip addresses (e.g. 10.1.2.1/28). " .. - "If this is a range inside your mesh network range, then it will be announced as HNA. Any other range will use NAT. " .. - "If left empty then the defaults from the community profile will be used.")) - dhcprange:depends(device .. "_dhcp", "1") - dhcprange.rmempty = true - dhcprange.datatype = "ip4addr" -end --- create tabs and config for wireless -local nets={} -uci:foreach("wireless", "wifi-device", function(section) - local device = section[".name"] - table.insert(nets, device) -end) - -local wired_nets = {} -uci:foreach("network", "interface", function(section) - local device = section[".name"] - if not util.contains(nets, device) and device ~= "loopback" and not device:find("wireless") then - table.insert(nets, device) - table.insert(wired_nets, device) - end -end) - -for _, net in util.spairs(nets, function(a,b) return (nets[a] < nets[b]) end) do - n:tab(net, net) -end - --- create cbi config for wireless -uci:foreach("wireless", "wifi-device", function(section) - local device = section[".name"] - local hwtype = section.type - local syscc = section.country or uci:get(community, "wifi_device", "country") or - uci:get("freifunk", "wifi_device", "country") - - cbi_configure(device) - - -- Channel selection - - if hwtype == "mac80211" then - sys.exec("iw reg set " .. syscc) - elseif hwtype == "broadcom" then - sys.exec ("wlc country " .. syscc) - end - - local chan = n:taboption(device, ListValue, device .. "_channel", translate("Channel"), - translate("Your device and neighbouring nodes have to use the same channel.")) - chan:depends(device .. "_config", 1) - chan:value('default') - - local iwinfo = sys.wifi.getiwinfo(device) - if iwinfo and iwinfo.freqlist then - for _, f in ipairs(iwinfo.freqlist) do - if not f.restricted then - chan:value(f.channel) - end - end - end - -- IPv4 address - cbi_ip4addr(device) - - -- DHCP enable - cbi_dhcp(device) - - -- DHCP range - cbi_dhcprange(device) - - -- IPv6 addr and RA - if community_ipv6 == "1" then - if community_ipv6mode == "static" then - cbi_ip6addr(device) - end - cbi_ra(device) - end - - -- Enable VAP - local supports_vap = 0 - if sys.call("/usr/bin/meshwizard/helpers/supports_vap.sh " .. device .. " " .. hwtype) == 0 then - supports_vap = 1 - end - if supports_vap == 1 then - local vap = n:taboption(device, Flag, device .. "_vap", translate("Virtual Access Point (VAP)"), - translate("This will setup a new virtual wireless interface in Access Point mode.")) - vap:depends(device .. "_dhcp", "1") - vap.rmempty = true - if community_vap == "1" then - vap.default = "1" - end - end -end) - -for _, device in pairs(wired_nets) do - cbi_configure(device) - cbi_ip4addr(device) - cbi_dhcp(device) - cbi_dhcprange(device) - -- IPv6 addr and RA - if community_ipv6 == "1" then - if community_ipv6mode == "static" then - cbi_ip6addr(device) - end - cbi_ra(device) - end -end - --- General settings -g = m:section(TypedSection, "general", translate("General Settings")) -g.anonymous = true - -local cleanup = g:option(Flag, "cleanup", translate("Cleanup config"), - translate("If this is selected then config is cleaned before setting new config options.")) -cleanup.default = "1" - -local restrict = g:option(Flag, "local_restrict", translate("Protect LAN"), - translate("Check this to protect your LAN from other nodes or clients") .. " (" .. translate("recommended") .. ").") - -local share = g:option(Flag, "sharenet", translate("Share your internet connection"), - translate("Select this to allow others to use your connection to access the internet.")) - share.rmempty = true - --- IPv6 config -if community_ipv6 == "1" then - v6 = m:section(NamedSection, "ipv6", nil, translate("IPv6 Settings")) - local enabled = v6:option(Flag, "enabled", translate("Enabled"), - translate("Activate or deactivate IPv6 config globally.")) - enabled.default = meshkit_ipv6 - enabled.rmempty = false -end - -return m diff --git a/applications/luci-app-meshwizard/po/ca/meshwizard.po b/applications/luci-app-meshwizard/po/ca/meshwizard.po deleted file mode 100644 index ab3d6e788..000000000 --- a/applications/luci-app-meshwizard/po/ca/meshwizard.po +++ /dev/null @@ -1,176 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-01 23:43+0200\n" -"PO-Revision-Date: 2014-07-01 06:11+0200\n" -"Last-Translator: Alex <alexhenrie24@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Activa o desactiva la configuració IPv6 globalment." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Neteja la configuració" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configura aquesta interfície" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Rang IP de DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP assignarà automàticament adreces IP als clients" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Habilita DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Habilita RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Habilitat" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Ajusts generals" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Ajusts IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Si això està seleccionat, la configuració es neteja abans d'establir noves " -"opcions de configuració." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfícies" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Adreça IP en malla" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Adreça IPv6 en malla" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Ajudant de malla" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -#, fuzzy -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Nota: això configurarà aquesta interfície per a operació en malla, és a dir, " -"la afegirà a la zona 'freifunk' i habilitarà l'OLSR." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Seleccioneu aquesta opció per permetre que altres utilitzin la vostra " -"connexió per accedir a Internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "Envia publicitats d'encaminador en aquest dispositiu." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Comparteix la vostra connexió a Internet" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"El rang IP del qual s'assignen adreces IP als clients (per exemple, " -"10.1.2.1/28). Si aquest és un rang dins del vostre rang de xarxa en malla, " -"s'anunciarà com HNA. Qualsevol altre rang utilitzarà NAT. Si deixat en " -"blanc, els valors per defecte del perfil comunitari s'utilitzaran." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "L'adreça IP donada no està dins del rang de la xarxa en malla" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"Aquesta és una adreça IPv4 única en notació CIDR (per exemple, " -"2001:1:2:3::1/64) i ha de ser registrada a la vostra comunitat local." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Aquesta és una adreça única en la malla (per exemple, 10.1.1.1) i ha de ser " -"registrada a la vostra comunitat local." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Això configurarà una nova interfície sense fil virtual en mode de punt " -"d'accés." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Aquest ajudant us ajudarà a configurar el vostre encaminador per al Freifunk " -"o altre xarxa comunitària sense fil similar." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Punt d'accés virtual (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Ajudant" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" -"El vostre dispositiu i els nodes veïns han d'utilitzar el mateix canal." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "recomanat" diff --git a/applications/luci-app-meshwizard/po/cs/meshwizard.po b/applications/luci-app-meshwizard/po/cs/meshwizard.po deleted file mode 100644 index bcf63e7df..000000000 --- a/applications/luci-app-meshwizard/po/cs/meshwizard.po +++ /dev/null @@ -1,154 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-06-21 14:39+0200\n" -"Last-Translator: koli <lukas.koluch@gmail.com>\n" -"Language-Team: none\n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Kanál" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Nastavit toto rozhraní" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "DHCP IP rozsah" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Povolit DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Povolit RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Povoleno" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Obecné nastavení" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Nastavení IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Rozhraní" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Průvodce mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Ochrana LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Sdílet vaše internetové připojení" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Virtuální přístupový bod (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Průvodce" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "doporučeno" diff --git a/applications/luci-app-meshwizard/po/de/meshwizard.po b/applications/luci-app-meshwizard/po/de/meshwizard.po deleted file mode 100644 index 3bd4d1703..000000000 --- a/applications/luci-app-meshwizard/po/de/meshwizard.po +++ /dev/null @@ -1,177 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-26 15:36+0200\n" -"PO-Revision-Date: 2012-11-21 20:51+0200\n" -"Last-Translator: Jo-Philipp <jow@openwrt.org>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "IPv6 global aktivieren oder deaktivieren" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Kanal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" -"Aktivieren um Zugriff auf das LAN von anderen Knoten oder Clients zu " -"verhindern" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Konfiguration aufräumen" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Diese Schnittstelle einrichten" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "DHCP-Adressbereich" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP vergibt automatisch IP-Adressen an Clients" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "DHCP aktivieren" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "RAs aktivieren" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Aktiviert" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "IPv6 Einstellungen" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Wenn diese Option aktiviert wird, werden eventuell vorhandene Einstellungen " -"aufgeräumt bevor neue Optionen gesetzt werden." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Schnittstellen" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Mesh-IP-Adresse" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Mesh-IPv6-Adresse" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Mesh-Assistent" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -#, fuzzy -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Hinweis: Dies konfiguriert die Schnittstelle für den Mesh-Betrieb, d.h. sie " -"wird zur Freifunk-Zone hinzugefügt und OLSR eingerichtet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "LAN schützen" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Diese Option aktivieren um anderen den Zugriff auf die lokale " -"Internetverbindung zu gestatten" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "Router-Advertisements auf dieser Schnittstelle senden" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Internetverbindung freigeben" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"Der Adressbereich, aus welchem den Clients IP-Adressen zugewiesen werden (z." -"B. 10.1.2.1/28). Liegt dieser Adressbereich außerhalb des Mesh-Bereiches, " -"dann wird dieser per HNA angekündigt. Leer lassen um den Standardwert aus " -"dem Community-Profil zu verwenden." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "Die angegebene IP-Adresse ist nicht Teil des Mesh-Adressbereiches" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"Diese ist eine eindeutige IPv6-Adresse in CIDR-Notation (z.B. " -"2001:1:2:3::1/64) welche bei der lokalen Community registriert werden muss." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Dies ist die eindeutige IP-Adresse des Mesh-Knotens (z.B. 10.1.1.1). Diese " -"muss bei der lokalen Community registriert werden." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Dies richtet eine weitere, virtuelle WLAN-Schnittstelle im Access-Point-" -"Modus ein." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Der Assistent hilft beim Einrichten des Routers für ein Freifunk- oder " -"ähnliches Wireless-Community-Netzwerk." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Virtueller Access-Point (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Assistent" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "Dieses Gerät und benachbarte Knoten müssen den selben Kanal verwenden." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "empfohlen" diff --git a/applications/luci-app-meshwizard/po/el/meshwizard.po b/applications/luci-app-meshwizard/po/el/meshwizard.po deleted file mode 100644 index c9d6ec7f1..000000000 --- a/applications/luci-app-meshwizard/po/el/meshwizard.po +++ /dev/null @@ -1,156 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-18 15:14+0200\n" -"PO-Revision-Date: 2012-03-31 15:40+0200\n" -"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.4\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Κανάλι" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Καθαρισμός ρυθμίσεων" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Ενεργοποίηση DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Γενικές Ρυθμίσεις" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Διεπαφές" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/en/meshwizard.po b/applications/luci-app-meshwizard/po/en/meshwizard.po deleted file mode 100644 index d8f422e2e..000000000 --- a/applications/luci-app-meshwizard/po/en/meshwizard.po +++ /dev/null @@ -1,141 +0,0 @@ -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/es/meshwizard.po b/applications/luci-app-meshwizard/po/es/meshwizard.po deleted file mode 100644 index 9fb39dac2..000000000 --- a/applications/luci-app-meshwizard/po/es/meshwizard.po +++ /dev/null @@ -1,169 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-23 22:25+0200\n" -"PO-Revision-Date: 2012-11-24 10:22+0200\n" -"Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Activar o desactivar la configuración IPv6 globalmente." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "Proteger la LAN de otros nodos y clientes" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Borrar configuración" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configurar esta interfaz" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Rango IP de DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP asignará direcciones IP automáticamente a los clientes" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Activar DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Activar RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Activado" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Configuración general" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Configuración IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "Borrar la configuración antes de establecer una nueva." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfaces" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Dirección IP del mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Dirección IPv6 del mesh" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Asistente del mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -#, fuzzy -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Nota: esto configurará esta interfaz para uso mesh, es decir: la añadirá a " -"la zona \"freifunk\" y activará OSLR." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Proteger LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "Permitir a otros usar su conexión para acceder a internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "Envía publicaciones de routers por este dispositivo." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Compartir su conexión a internet" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"Rango IP desde el que asignar direcciones IP (ej. 10.1.2.1/28). Si el rango " -"está dentro del de la mesh se declarará como HNA. Cualquier otro rango usará " -"NAT. Si se deja vación tomará el del perfil de la comunidad." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "Este rango IP no está dentro del de la red mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"Dirección única IPv6 en notación CIDR (p.e.: 2001:1:2:3::1/64) y que tiene " -"que estar registrada en su comunidad local." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Esta dirección debe ser única en la mesh (ej. 10.1.1.1) y debe registrarse " -"en su comunidad local." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Configurar un nuevo interfaz virtual inalámbrico en modo punto de acceso." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Este asistente le ayudará a configurar su ruter para Freifunk o una red " -"comunitaria similar." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Punto de acceso virtual (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Asistente" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "Su dispositivo y los vecinos deben usar el mismo canal." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "recomendado" diff --git a/applications/luci-app-meshwizard/po/fr/meshwizard.po b/applications/luci-app-meshwizard/po/fr/meshwizard.po deleted file mode 100644 index ac349e255..000000000 --- a/applications/luci-app-meshwizard/po/fr/meshwizard.po +++ /dev/null @@ -1,171 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-11-23 22:20+0200\n" -"PO-Revision-Date: 2011-11-23 22:20+0200\n" -"Last-Translator: fredb <fblistes+luci@free.fr>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 2.0.4\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "Cochez ceci pour protéger votre réseau LAN des autres nœuds ou clients" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Nettoyer la config" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configurer cette interface" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Gamme d'adresses IP pour DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "Le serveur DHCP donnera automatiquement des adresses IP aux clients" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Activer le serveur DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Paramètres généraux" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Si vous sélectionnez ceci, la configuration sera nettoyée avant de " -"positionner de nouvelles options de configuration." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfaces" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Adresse IP maillée" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Assistant de Maillage" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Protéger le LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Sélectionnez ceci pour permettre aux autres d'utiliser votre connexion pour " -"accéder à Internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Partager votre connexion Internet" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"La gamme d'adresses IP utilisée pour attribuer des adresses IP aux clients " -"(par ex. 10.1.2.1/28). Si ce lot d'adresses est compris dans le réseau " -"maillé, il sera annoncé comme HNA, sinon du NAT sera utilisé. Si ce champ " -"reste vide, les valeurs par défaut du profil de la communauté seront " -"utilisées." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "L'adresse IP donnée n'est pas dans le réseau maillé" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"C'est une adresse unique dans le réseau maillé (par ex. 10.1.1.1) et doit " -"être enregistré dans votre communauté locale." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Cela configurera une nouvelle interface sans-fil virtuelle en mode Point " -"d'Accès." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Cet assistant vous aidera à configurer votre routeur pour le réseau maillé " -"Freifunk ou un autre réseau sans-fil communautaire du même genre." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Point d'accès virtuel (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Assistant" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "Votre matériel et les nœuds voisins doivent utiliser le même canal." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "recommandé" diff --git a/applications/luci-app-meshwizard/po/he/meshwizard.po b/applications/luci-app-meshwizard/po/he/meshwizard.po deleted file mode 100644 index 16df7b943..000000000 --- a/applications/luci-app-meshwizard/po/he/meshwizard.po +++ /dev/null @@ -1,151 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/hu/meshwizard.po b/applications/luci-app-meshwizard/po/hu/meshwizard.po deleted file mode 100644 index df60de68b..000000000 --- a/applications/luci-app-meshwizard/po/hu/meshwizard.po +++ /dev/null @@ -1,154 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2013-08-09 12:55+0200\n" -"Last-Translator: Bgray <bgraygms@gmail.com>\n" -"Language-Team: none\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Globális IPV6 konfiguráció aktiválása vagy kikapcsolása." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Csatorna" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "DHCP Engedélyezése" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "RA Engedélyezése" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Engedélyezés" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Általános Beállítások" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfészek" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/it/meshwizard.po b/applications/luci-app-meshwizard/po/it/meshwizard.po deleted file mode 100644 index a422b1818..000000000 --- a/applications/luci-app-meshwizard/po/it/meshwizard.po +++ /dev/null @@ -1,175 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-06 18:07+0200\n" -"PO-Revision-Date: 2013-02-09 20:46+0200\n" -"Last-Translator: Francesco <3gasas@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Attivare o disattivare la configurazione IPv6 a livello globale." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canale" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "Abilita per proteggere la tua LAN da altri nodi o clienti" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Ripulisci config" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configura questa interfaccia" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Range DHCP IP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP assegnerà indirizzi ip ai client" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Abilità DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Attiva RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Attivato" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Impostazioni generali" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Impostazioni IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Se questa opzione è selezionata, config viene pulita prima di nuove opzioni " -"di configurazione." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfacce" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Rete indirizzo IP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Rete indirizzo IPv6" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Configurazione Rete" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -#, fuzzy -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Nota: questo permette di configurare questa interfaccia per il funzionamento " -"in rete, vale a dire aggiungere nella zona 'Freifunk' e consentire OLSR." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Proteggi LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Selezionare per permettere ad altri di usare la tua connessione per accedere " -"a internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "Inviare annunci router su questo dispositivo." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Condividi la tua connessione internet" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"Il range IP dal quale i client ricevono gli indirizzi (es. 10.1.2.1/28). Se " -"questa subnet è all'interno della tua rete mesh, sarà annunciata as HNA. " -"Ogni altro range userà il NAT. Se lasciato vuoto allora la scelta " -"predefinita della community sarà usata." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "L'IP dato non è all'interno del range degli indirizzi di rete mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"Si tratta di un indirizzo IPv6 unico in notazione CIDR (ad esempio " -"2001:1:2:3::1/64) e deve essere registrato presso la comunità locale." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Questo è un indirizzo univoco nella mesh (es. 10.1.1.1) e deve essere " -"accordato con la tua community." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Questo confgurerà una nuova interfaccia wireless virtuale in modalità Access " -"Point." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Questo wizard ti assisterà nel setup del tuo router per l'uso in una rete " -"wireless comunitaria come Freifunk o Ninux." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Punto di Accesso Virtuale (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Creazione guidata" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "Il tuo device a i nodi confinanti devono sare lo stesso canale." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "raccomandato" diff --git a/applications/luci-app-meshwizard/po/ja/meshwizard.po b/applications/luci-app-meshwizard/po/ja/meshwizard.po deleted file mode 100644 index d8f422e2e..000000000 --- a/applications/luci-app-meshwizard/po/ja/meshwizard.po +++ /dev/null @@ -1,141 +0,0 @@ -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/ms/meshwizard.po b/applications/luci-app-meshwizard/po/ms/meshwizard.po deleted file mode 100644 index d8f422e2e..000000000 --- a/applications/luci-app-meshwizard/po/ms/meshwizard.po +++ /dev/null @@ -1,141 +0,0 @@ -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/no/meshwizard.po b/applications/luci-app-meshwizard/po/no/meshwizard.po deleted file mode 100644 index d8f422e2e..000000000 --- a/applications/luci-app-meshwizard/po/no/meshwizard.po +++ /dev/null @@ -1,141 +0,0 @@ -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/pl/meshwizard.po b/applications/luci-app-meshwizard/po/pl/meshwizard.po deleted file mode 100644 index add296136..000000000 --- a/applications/luci-app-meshwizard/po/pl/meshwizard.po +++ /dev/null @@ -1,179 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-19 21:15+0200\n" -"PO-Revision-Date: 2014-04-23 19:18+0200\n" -"Last-Translator: goodgod261 <goodgod261@wp.pl>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Aktywuj lub dezaktywuj ipv6 konfiguracja globalna" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Kanał" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" -"Zaznacz, aby zabezpieczyć sieć lokalną przed innymi węzłami lub klientami " -"sieci" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Wyczyść konfigurację" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Skonfiguruj ten interfejs" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Pula adresów DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP automatycznie przypisze adresy IP klientom" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Włącz DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Włącz RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Włączone" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Ustawienia ogólne" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "IPv6 Ustawienia" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Jeśli ta opcja jest zaznaczona to stara konfiguracja jest usuwana przed " -"zapisaniem nowych opcji." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfejsy" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Adres Mesh IP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Adres Mech IPv6" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Kreator Mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -#, fuzzy -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Nota: To są ustawienia interfejsu mesh operacja i.e Dodawanie Strefy " -"'Freifunk' oraz włączyć olsr" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Chroń LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Zaznacz tę opcję aby inni użytkownicy mogli używać twojego połączenia do " -"korzystania z internetu" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "Wyślij Routera Reklamę na urządzenie" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Współdziel swoje połączenie internetowe" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"Zakres adresów IP, z którego klientom są przypisywane adresy IP (np. " -"10.1.2.1/28). Jeżeli jest to zakres wewnątrz twojej sieci mesh, wówczas " -"zostanie rozgłoszony jako HNA. Każdy inny zakres będzie używać NAT. Jeżeli " -"pozostanie pusty, wówczas zostanie użyty domyślny profil społeczności." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "Podany adres IP nie należy do zakresu sieci mesh" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"To jest unikalny adres IPv6 w notacji <abbr title=\"Classless Inter-Domain " -"Routing\">CIDR</abbr> (np. 2001:1:2:3:1/64) i musi zostać zarejestrowany w " -"Twojej lokalnej społeczności" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Jest to unikalny adres w sieci mesh (np. 10.1.1.1) i musi być zarejestrowana " -"w lokalnej społeczności." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Ta opcja skonfiguruje nowy wirtualny interfejs bezprzewodowy w trybie Access " -"Point`a" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Ten kreator pomoże skonfigurować router do korzystania z Freifunk lub " -"podobnej społecznej sieci bezprzewodowej (darmowe WiFi)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Access Point Wirtualny (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Kreator" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "Twój router i sąsiedzkie węzły sieci używają tego samego kanału." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "zalecane" diff --git a/applications/luci-app-meshwizard/po/pt-br/meshwizard.po b/applications/luci-app-meshwizard/po/pt-br/meshwizard.po deleted file mode 100644 index 0228fe75f..000000000 --- a/applications/luci-app-meshwizard/po/pt-br/meshwizard.po +++ /dev/null @@ -1,181 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-11 00:23+0200\n" -"PO-Revision-Date: 2017-02-20 18:00-0300\n" -"Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.8.11\n" -"Language-Team: \n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Habilita e desabilita a configuração IPv6 globalmente." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" -"Marque isto para proteger sua rede local (LAN) de outros nós ou clientes" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Limpar configuração" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configure esta interface" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Faixa de IP do DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "O DHCP irá atribuir automaticamente endereços IP para os clientes" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Habilitar DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" -"Habilitar <abbr title=\\\"Router Advertisement, Anúncio de Roteador\\\">RA</" -"abbr>" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Habilitado" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Configurações Gerais" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Configurações IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Se selecionado, a configuração é limpa antes de definir as novas opções de " -"configuração." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfaces" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Endereço IP da rede em malha" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Endereço IPv6 da rede em malha" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Assistente de Configuração da Rede em Malha" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Nota: Isto irá configurar a interface para operação em malha, p. ex. " -"adicionar à zona 'freifunk' e ativar o OLSR. " - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Proteget Rede Local (LAN)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Selecione isto para permitir que outros usem sua conexão para acessar a " -"internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" -"Envia <abbr title=\\\"Router Advertisement, Anúncio de Roteador\\\">RA</" -"abbr> a partir deste dispositivo." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Compartilhar sua conexão com a internet" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"Faixa de endereços IP atribuídos aos clientes (ex: 10.1.2.1/28). Se esta " -"faixa está dentro da faixa da rede em malha, então ela será anunciada no " -"<abbr title=\"Host and network association, Associação de equipamentos e " -"redes\">HNA</abbr>. Qualquer outra faixa irá utilizar NAT. Se deixada vazia, " -"os padrões do perfil da comunidade será usada." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" -"O endereço IP informado não está na faixa de endereços da rede em malha" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"Este é um endereço IPv6 único na notação CIDR (ex: 2001:1:2:3::1/64) e deve " -"ser registrado na sua comunidade local." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Este é um endereço único na rede em malha (ex: 10.1.1.1) e tem que ser " -"registrado na sua comunidade local." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Isto configurará uma nova interface de rede sem fio virtual em modo de ponto " -"de acesso." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Este assistente irá ajudá-lo na configuração do seu roteador para Freifunk " -"ou outra rede comunitária sem fio similar." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Ponto de Acesso Virtual (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Assistente" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "Seu dispositivo e os nós vizinhos devem utilizar o mesmo canal." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "recomendado" diff --git a/applications/luci-app-meshwizard/po/pt/meshwizard.po b/applications/luci-app-meshwizard/po/pt/meshwizard.po deleted file mode 100644 index b860dc273..000000000 --- a/applications/luci-app-meshwizard/po/pt/meshwizard.po +++ /dev/null @@ -1,165 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-03 16:20+0200\n" -"PO-Revision-Date: 2013-06-03 18:01+0200\n" -"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "Ativar ou desativar a configuração IPv6 globalmente." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "Marcar isto para proteger a sua LAN de outros nós ou clientes" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Limpar configuração" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configurar esta interface" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Intervalo de IPs DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "O DHCP irá atribuir automaticamente endereços IP aos clientes" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Ativar DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Ativar RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Ativo" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Definições Gerais" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Definições IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Se isto estiver selecionado a configuração é limpa antes de serem definidas " -"novas opções na configuração." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfaces" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -#, fuzzy -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Nota: Isto irá configurar a interface para operação em malha, p. ex. " -"adicionar à zona 'freifunk' e ativar OLSR." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Proteger LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Ative isto para permitir que outros usem a sua ligação para aceder à " -"internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Irá ser configurado uma nova interface virtual wireless em modo de Ponto de " -"Acesso." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Ponto de Acesso Virtual (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Assistente" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "O seu dispositivo e os nós vizinhos têm de usar o mesmo canal." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "recomendado" diff --git a/applications/luci-app-meshwizard/po/ro/meshwizard.po b/applications/luci-app-meshwizard/po/ro/meshwizard.po deleted file mode 100644 index 42fcc7d10..000000000 --- a/applications/luci-app-meshwizard/po/ro/meshwizard.po +++ /dev/null @@ -1,158 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-06-29 19:55+0200\n" -"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n" -"Language-Team: none\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Canal" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" -"Bifeaza aici sa-ti protejezi reteaua locala LAN de alte noduri sau clienti" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Configureaza aceasta interfata" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Plaja de adrese IP DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP va aloca automat adrese IP la clienti" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Activeaza DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Activează RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Activat" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Setări generale" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Setări IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Interfete" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Protejeaza reteaua locala LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Selecteaza aici ca sa permiti si altora sa-ti foloseasca si ei conexiunea ta " -"de Internet." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Partajeaza cu altii conexiunea ta de Internet" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "recomandat" diff --git a/applications/luci-app-meshwizard/po/ru/meshwizard.po b/applications/luci-app-meshwizard/po/ru/meshwizard.po deleted file mode 100644 index d7dcf57b6..000000000 --- a/applications/luci-app-meshwizard/po/ru/meshwizard.po +++ /dev/null @@ -1,177 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: LuCI: meshwizard\n" -"POT-Creation-Date: 2013-09-06 09:43+0200\n" -"PO-Revision-Date: 2018-01-30 14:02+0300\n" -"Language-Team: http://cyber-place.ru\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"Language: ru\n" -"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " -"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" -"Активировать или деактивировать общие настройки IPv6 для использования " -"маршрутизатором." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Канал" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "Защитить вашу локальную сеть от других узлов или клиентов" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "Очистить config файл" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "Настроить этот интерфейс" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "Диапазон IP-адресов DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP автоматически назначит IP-адреса клиентам" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Включить DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Включить RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Включено" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Основные настройки" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "IPv6 Настройки" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" -"Очистить имеющийся config файл перед записью в него новых значений настроек." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Интерфейсы" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "IP-адрес Mesh сети" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "IPv6-адрес Mesh сети" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Мастер настройки Mesh сети" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"Внимание: этот режим использует данный интерфейс для Mesh сети, т.е. добавит " -"его в зону 'freifunk' ('free wireless radio') и задействует протокол OLSR." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Защита LAN" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "Позволить другим клиентам использовать ваше подключение к Интернету." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "Посылать ICMPv6 сообщения 'Router Advertisement' на это устройство." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "Сделать Интернет подключение общедоступным" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"Диапазон IP-адресов для использования клиентами сети (например 10.1.2.1/28). " -"Если указанный диапазон находится внутри вашей сети, тогда он будет объявлен " -"как HNA. Любой другой диапазон будет использовать NAT. Если вы не настроите " -"пул адресов, будут использованы адреса по умолчанию." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "Заданный IP-адрес не находится в диапазоне настроенной Mesh сети." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"Задать уникальный IPv6-адрес в нотации cidr для Mesh сети (например, " -"2001:1:2:3::1/64) для использования вашего маршрутизатора в качестве узла " -"существующей Mesh сети." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" -"Задать уникальный адрес для Mesh сети (например 10.1.1.1) для использования " -"вашего маршрутизатора в качестве узла существующей Mesh сети." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" -"Будет произведена настройка новой виртуальной беспроводной сети в режиме " -"точки доступа." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" -"Данный мастер настройки поможет настроить ваш маршрутизатор для создания и " -"использования сети Freifunk или другой подобной беспроводной Mesh сети." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "Виртуальная точка доступа (VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "Мастер настройки" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" -"Ваше устройство и соседние узлы должны использовать один и тот же канал." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "рекомендуется" diff --git a/applications/luci-app-meshwizard/po/sk/meshwizard.po b/applications/luci-app-meshwizard/po/sk/meshwizard.po deleted file mode 100644 index 334769def..000000000 --- a/applications/luci-app-meshwizard/po/sk/meshwizard.po +++ /dev/null @@ -1,151 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/sv/meshwizard.po b/applications/luci-app-meshwizard/po/sv/meshwizard.po deleted file mode 100644 index e2d115351..000000000 --- a/applications/luci-app-meshwizard/po/sv/meshwizard.po +++ /dev/null @@ -1,152 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/templates/meshwizard.pot b/applications/luci-app-meshwizard/po/templates/meshwizard.pot deleted file mode 100644 index 2094100e8..000000000 --- a/applications/luci-app-meshwizard/po/templates/meshwizard.pot +++ /dev/null @@ -1,144 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/tr/meshwizard.po b/applications/luci-app-meshwizard/po/tr/meshwizard.po deleted file mode 100644 index 15f0d34bd..000000000 --- a/applications/luci-app-meshwizard/po/tr/meshwizard.po +++ /dev/null @@ -1,151 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/uk/meshwizard.po b/applications/luci-app-meshwizard/po/uk/meshwizard.po deleted file mode 100644 index 534e35910..000000000 --- a/applications/luci-app-meshwizard/po/uk/meshwizard.po +++ /dev/null @@ -1,158 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2013-09-21 15:47+0200\n" -"Last-Translator: zubr_139 <zubr139@ukr.net>\n" -"Language-Team: none\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "Канал" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "DHCP IP-діапазон" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP автоматично призначить IP-адреси клієнтам" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "Активувати DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "Активувати RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "Активувати" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "Загальні налаштування" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "Налаштування IPv6" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "Інтерфейси" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "Захист локальної мережі" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -#, fuzzy -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" -"Оберіть це, щоб дозволити іншим використовувати з'єднання для доступу в " -"Інтернет." - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/vi/meshwizard.po b/applications/luci-app-meshwizard/po/vi/meshwizard.po deleted file mode 100644 index d8f422e2e..000000000 --- a/applications/luci-app-meshwizard/po/vi/meshwizard.po +++ /dev/null @@ -1,141 +0,0 @@ -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "" diff --git a/applications/luci-app-meshwizard/po/zh-cn/meshwizard.po b/applications/luci-app-meshwizard/po/zh-cn/meshwizard.po deleted file mode 100644 index 088ed9248..000000000 --- a/applications/luci-app-meshwizard/po/zh-cn/meshwizard.po +++ /dev/null @@ -1,165 +0,0 @@ -# -# Yangfl <mmyangfl@gmail.com>, 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-24 18:01+0200\n" -"PO-Revision-Date: 2018-08-07 19:18+0800\n" -"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" -"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "启用或停用全局 IPv6 设置" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "信道" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "选择此项,隔离其他节点或客户端的攻击来保护您的局域网" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "清空配置" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "配置当前界面" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "DHCP IP 范围" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP 将自动给客户端分配 IP 地址" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "启动 DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "启用 RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "启用" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "常规设置" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "IPv6 设置" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "如果选中此项,在设置新选项之前,配置将被清空。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "界面" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Mesh IP 地址" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Mesh IPv6 地址" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Mesh 向导" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"注意:这将为 mesh 操作建立一个接口,如:添加到“freifunk”区域并启用 olsr" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "保护 LAN 口" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "选择此项以允许其他人使用您的连接访问互联网。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "在此设备上发送路由广播。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "分享您的互联网连接" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"给客户端分配的 IP 地址范围(如 10.1.2.1/28)。如果此范围位于您的网状网络范围" -"内,那么它将被通告为 HNA。任何其他范围将使用 NAT。如果留空,则将使用社区个人" -"资料中的默认值。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "给定的 IP 地址不在网状网络范围内" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"这是唯一 IPv6 地址,以 CIDR 表示(例如 2001:1:2:3::1/64),必须在您的当地社区" -"注册。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "这是网状网中的唯一地址(例如 10.1.1.1),必须在您的当地社区注册。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "这将在接入点模式下设置新的虚拟无线接口。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "该向导将帮助您为 Freifunk 或其他类似的无线社区网络设置路由器。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "虚拟接入点(VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "向导" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "您的设备和相邻节点必须使用相同的信道。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "推荐" diff --git a/applications/luci-app-meshwizard/po/zh-tw/meshwizard.po b/applications/luci-app-meshwizard/po/zh-tw/meshwizard.po deleted file mode 100644 index 7819682d0..000000000 --- a/applications/luci-app-meshwizard/po/zh-tw/meshwizard.po +++ /dev/null @@ -1,165 +0,0 @@ -# -# Yangfl <mmyangfl@gmail.com>, 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-24 18:01+0200\n" -"PO-Revision-Date: 2018-08-07 19:18+0800\n" -"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" -"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191 -msgid "Activate or deactivate IPv6 config globally." -msgstr "啟用或停用全域性 IPv6 設定" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112 -msgid "Channel" -msgstr "通道" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "Check this to protect your LAN from other nodes or clients" -msgstr "選擇此項,隔離其他節點或客戶端的攻擊來保護您的區域網" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176 -msgid "Cleanup config" -msgstr "清空配置" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24 -msgid "Configure this interface" -msgstr "配置當前介面" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67 -msgid "DHCP IP range" -msgstr "DHCP IP 範圍" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54 -msgid "DHCP will automatically assign ip addresses to clients" -msgstr "DHCP 將自動給客戶端分配 IP 位址" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53 -msgid "Enable DHCP" -msgstr "啟動 DHCP" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60 -msgid "Enable RA" -msgstr "啟用 RA" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190 -msgid "Enabled" -msgstr "啟用" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173 -msgid "General Settings" -msgstr "常規設定" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189 -msgid "IPv6 Settings" -msgstr "IPv6 設定" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177 -msgid "" -"If this is selected then config is cleaned before setting new config options." -msgstr "如果選中此項,在設定新選項之前,配置將被清空。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18 -msgid "Interfaces" -msgstr "介面" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29 -msgid "Mesh IP address" -msgstr "Mesh IP 位址" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45 -msgid "Mesh IPv6 address" -msgstr "Mesh IPv6 位址" - -#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7 -msgid "Mesh Wizard" -msgstr "Mesh 嚮導" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25 -msgid "" -"Note: this will set up this interface for mesh operation, i.e. add it to " -"zone 'freifunk' and enable olsr." -msgstr "" -"注意:這將為 mesh 操作建立一個介面,如:新增到“freifunk”區域並啟用 olsr" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180 -msgid "Protect LAN" -msgstr "保護 LAN 口" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184 -msgid "" -"Select this to allow others to use your connection to access the internet." -msgstr "選擇此項以允許其他人使用您的連線訪問網際網路。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61 -msgid "Send router advertisements on this device." -msgstr "在此裝置上傳送路由廣播。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183 -msgid "Share your internet connection" -msgstr "分享您的網際網路連線" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68 -msgid "" -"The IP range from which clients are assigned ip addresses (e.g. " -"10.1.2.1/28). If this is a range inside your mesh network range, then it " -"will be announced as HNA. Any other range will use NAT. If left empty then " -"the defaults from the community profile will be used." -msgstr "" -"給客戶端分配的 IP 位址範圍(如 10.1.2.1/28)。如果此範圍位於您的網狀網路範圍" -"內,那麼它將被宣告為 HNA。任何其他範圍將使用 NAT。如果留空,則將使用社群個人" -"資料中的預設值。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38 -msgid "The given IP address is not inside the mesh network range" -msgstr "給定的 IP 位址不在網狀網路範圍內" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46 -msgid "" -"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and " -"has to be registered at your local community." -msgstr "" -"這是唯一 IPv6 位址,以 CIDR 表示(例如 2001:1:2:3::1/64),必須在您的當地社群" -"註冊。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30 -msgid "" -"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be " -"registered at your local community." -msgstr "這是網狀網中的唯一位址(例如 10.1.1.1),必須在您的當地社群註冊。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149 -msgid "This will setup a new virtual wireless interface in Access Point mode." -msgstr "這將在接入點模式下設定新的虛擬無線介面。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "" -"This wizard will assist you in setting up your router for Freifunk or " -"another similar wireless community network." -msgstr "該向導將幫助您為 Freifunk 或其他類似的無線社群網路設定路由器。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148 -msgid "Virtual Access Point (VAP)" -msgstr "虛擬接入點(VAP)" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15 -msgid "Wizard" -msgstr "嚮導" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113 -msgid "Your device and neighbouring nodes have to use the same channel." -msgstr "您的裝置和相鄰節點必須使用相同的通道。" - -#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181 -msgid "recommended" -msgstr "推薦" diff --git a/applications/luci-app-meshwizard/root/etc/uci-defaults/meshwizard b/applications/luci-app-meshwizard/root/etc/uci-defaults/meshwizard deleted file mode 100644 index 6ceb1b714..000000000 --- a/applications/luci-app-meshwizard/root/etc/uci-defaults/meshwizard +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -uci batch <<EOF -set ucitrack.meshwizard="meshwizard" -set ucitrack.meshwizard.exec="/usr/bin/meshwizard/wizard.sh" -commit ucitrack -EOF - -rm -f /tmp/luci-indexcache |