diff options
Diffstat (limited to 'applications/luci-app-yggdrasil')
42 files changed, 11078 insertions, 104 deletions
diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js index 8bc79321fd..44acaa22d6 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js @@ -1,7 +1,8 @@ 'use strict'; +'require view'; 'require form'; -return L.view.extend({ +return view.extend({ render: function() { var m, s, o; diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js index 62336a2708..7d392901c5 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js @@ -1,7 +1,8 @@ 'use strict'; +'require view'; 'require form'; -return L.view.extend({ +return view.extend({ render: function() { var m, s, o; diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js index 4a91d5e02f..45fe2207b2 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js @@ -1,7 +1,8 @@ 'use strict'; +'require view'; 'require form'; -return L.view.extend({ +return view.extend({ render: function() { var m, s, o; diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js index b72c2fac2d..4278386f53 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js @@ -1,7 +1,8 @@ 'use strict'; +'require view'; 'require form'; -return L.view.extend({ +return view.extend({ render: function() { var m, s, o; @@ -33,7 +34,6 @@ return L.view.extend({ try { JSON.parse(v); return true; } catch (e) { return e.message; } } - s.option(form.Flag, "IfTAPMode", _("Enable tap mode")); s.option(form.Value, "IfMTU", _("MTU size for the interface")); s.option(form.Value, "SwitchOptions_MaxTotalQueueSize", _("Maximum size of all switch queues combined")); @@ -53,8 +53,8 @@ return L.view.extend({ "Multicast peer discovery will work regardless of any listeners set " + "here. Each listener should be specified in URI format as above, e.g. " + "tcp://0.0.0.0:0 or tcp://[::]:0 to listen on all interfaces.")); - o.option(form.Value, "address", _("Address to listen for incoming connections"), + o.option(form.Value, "uri", _("e.g. tcp://0.0.0.0:0 or tcp://[::]:0")); o.anonymous = true; o.addremove = true; diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js index 3fb6c1f7fa..35078a511b 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js @@ -1,4 +1,5 @@ 'use strict'; +'require view'; 'require fs'; 'require form'; @@ -65,7 +66,7 @@ function update_active_peers() { }); } -return L.view.extend({ +return view.extend({ load: function() { return Promise.all([ L.resolveDefault(fs.stat("/usr/sbin/yggdrasilctl"), null), diff --git a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js index 77cfbc2dce..0b4ac6e51a 100644 --- a/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js +++ b/applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js @@ -1,7 +1,8 @@ 'use strict'; +'require view'; 'require form'; -return L.view.extend({ +return view.extend({ render: function() { var m, s, o; diff --git a/applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua b/applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua deleted file mode 100644 index 8a955520f8..0000000000 --- a/applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua +++ /dev/null @@ -1,16 +0,0 @@ -module("luci.controller.yggdrasil", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/yggdrasil") then - return - end - - entry({"admin", "network", "yggdrasil"}, firstchild(), "Yggdrasil").dependent = true - entry({"admin", "network", "yggdrasil", "status"}, view("yggdrasil/status"), _("Status"), 1).leaf = false - - entry({"admin", "network", "yggdrasil", "peers"}, view("yggdrasil/peers"), _("Peers"), 2).leaf = false - entry({"admin", "network", "yggdrasil", "settings"}, view("yggdrasil/settings"), _("Settings"), 3).leaf = false - entry({"admin", "network", "yggdrasil", "keys"}, view("yggdrasil/keys"), _("Encryption keys"), 4).leaf = false - entry({"admin", "network", "yggdrasil", "session_firewall"}, view("yggdrasil/session_firewall"), _("Session firewall"), 5).leaf = false - entry({"admin", "network", "yggdrasil", "tunnel_routing"}, view("yggdrasil/tunnel_routing"), _("Tunnel routing"), 6).leaf = false -end diff --git a/applications/luci-app-yggdrasil/po/ar/yggdrasil.po b/applications/luci-app-yggdrasil/po/ar/yggdrasil.po new file mode 100644 index 0000000000..aa5d3fb643 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ar/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: ar\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/bg/yggdrasil.po b/applications/luci-app-yggdrasil/po/bg/yggdrasil.po new file mode 100644 index 0000000000..7da8e52fe9 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/bg/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/bn_BD/yggdrasil.po b/applications/luci-app-yggdrasil/po/bn_BD/yggdrasil.po new file mode 100644 index 0000000000..801e5ec9d3 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/bn_BD/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: bn_BD\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/ca/yggdrasil.po b/applications/luci-app-yggdrasil/po/ca/yggdrasil.po new file mode 100644 index 0000000000..988c08a1ff --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ca/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-10 12:24+0000\n" +"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/ca/>\n" +"Language: ca\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10.1\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interfície" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/cs/yggdrasil.po b/applications/luci-app-yggdrasil/po/cs/yggdrasil.po new file mode 100644 index 0000000000..fb022bbc29 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/cs/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-02 09:03+0000\n" +"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/cs/>\n" +"Language: cs\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: Weblate 3.11-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Rozhraní" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Nastavení" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Stav" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/de/yggdrasil.po b/applications/luci-app-yggdrasil/po/de/yggdrasil.po new file mode 100644 index 0000000000..a69d729626 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/de/yggdrasil.po @@ -0,0 +1,346 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-01 11:11+0000\n" +"Last-Translator: ce4 <chregger@gmail.com>\n" +"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/de/>\n" +"Language: de\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.0.2\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "Aktive Peers" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "Adresse für eingehende Verbindungen" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "Erlaube Netzwerkverkehr von direkt verbundenen Teilnehmern" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" +"Erlaube Netzwerkverkehr mit entfernten Teilnehmern, die nicht direkt " +"angebunden sind" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" +"Erlaube ausgehenden Verkehr unabhängig von AllowFromDirect oder " +"AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" +"Erlaube das Tunneln von nicht-Yggdrasil-Netzwerkverkehr. Dies ermöglicht " +"Yggdrasil als Netzrouter oder -Brücke ähnlich zu einem VPN-Tunnel zu " +"agieren. Tunneln funktioniert zwischen allen Knoten, unabhängig ob diese " +"direkt verbunden sind." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "Public-Key-Blacklist" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" +"Standardmäßig enthält nodeinfo die Plattform, Architektur und Yggdrasil-" +"Version. Diese Informationen können bei der Überwachung und Diagnose von " +"Routingproblemen im Netzwerk hilfreich sein. Aktivieren von nodeinfo privacy " +"verhindert dies, indem nur in \"NodeInfo\" spezifierte Elemente übermittelt " +"werden." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "Aktiviere NodeInfo-Privacy" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "Aktiviere Session-Firewall" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Allgemeine Einstellungen" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "IPv4 lokales Subnetz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "IPv4 entferntes Subnetz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "IPv4-Subnetz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Schnittstelle" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Schnittstellenname" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "Schnittstellen-Gegenstellen" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Schlüssel" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "Link-local TCP-Port" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Verbindungspartner" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Einstellungen" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/el/yggdrasil.po b/applications/luci-app-yggdrasil/po/el/yggdrasil.po new file mode 100644 index 0000000000..4788553367 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/el/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-25 16:36+0000\n" +"Last-Translator: george k <norhorn@gmail.com>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/el/>\n" +"Language: el\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.0.2-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Διεπαφή" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Όνομα διεπαφής" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/en/yggdrasil.po b/applications/luci-app-yggdrasil/po/en/yggdrasil.po new file mode 100644 index 0000000000..3955530dfb --- /dev/null +++ b/applications/luci-app-yggdrasil/po/en/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/es/yggdrasil.po b/applications/luci-app-yggdrasil/po/es/yggdrasil.po new file mode 100644 index 0000000000..264c703091 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/es/yggdrasil.po @@ -0,0 +1,443 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/es/>\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: Weblate 4.1-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "Pares activos" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "Dirección para escuchar las conexiones entrantes" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "Permitir desde directo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "Permitir desde remoto" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "Permitir tráfico de red de pares conectados directamente" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" +"Permita el tráfico de red desde nodos remotos en la red con los que no está " +"vinculado directamente" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" +"Permitir tráfico de red saliente independientemente de AllowFromDirect o " +"AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" +"Permitir el tráfico de túnel que no sea Yggdrasil sobre Yggdrasil. Esto " +"efectivamente le permite usar Yggdrasil para enrutar o conectar otras redes, " +"de forma similar a un túnel VPN. La tunelización funciona entre dos nodos y " +"no requiere que se asocien directamente." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "Permitir siempre saliente" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "Claves públicas en la lista negra" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" +"De forma predeterminada, nodeinfo contiene algunos valores predeterminados, " +"incluida la plataforma, la arquitectura y la versión de Yggdrasil. Estos " +"pueden ayudar al inspeccionar la red y diagnosticar problemas de " +"enrutamiento de red. Activar la privacidad de nodeinfo evita esto, de modo " +"que sólo los elementos especificados en \"NodeInfo\" se envían de regreso si " +"se especifica." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "Activar privacidad de NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "Activar firewall de sesión" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "Claves de encriptación" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "Clave privada de encriptación" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "Clave pública de encriptación" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Configuración general" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "Conceder acceso a la aplicación yggdrasil de LuCI" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "Subred local IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "Subred remota IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "Subred IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" +"Subredes IPv4 que pertenecen a nodos remotos, asignados al público del nodo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" +"Subredes IPv4 que pertenecen al final de los túneles de este nodo. Solo el " +"tráfico de estos rangos será tunelizado." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "Subred local IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "Subred remota IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "Subred IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" +"Subredes IPv6 que pertenecen a nodos remotos, asignados al público del nodo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" +"Subredes IPv6 que pertenecen al extremo de los túneles de este nodo. Solo se " +"canalizará el tráfico de estos rangos (o la dirección/subred IPv6 del nodo " +"Yggdrasil)." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" +"Si está desactivado, se permitirá el tráfico de red desde cualquier nodo. Si " +"está activado, se aplican las siguientes reglas" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Nombre de interfaz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "Interfaz de pares" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" +"Mantén esto en privado. Cuando esté comprometido, genere un nuevo par de " +"claves e IPv6." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Clave" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "Puerto TCP local de enlace" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" +"Lista de cadenas de conexión para conexiones de pares salientes en formato " +"URI, organizadas por interfaz de origen, p.e. { \"eth0\": [ tcp://a.b.c.d: " +"e] }. Tenga en cuenta que los pares SOCKS NO se verán afectados por esta " +"opción y deberían ir a la sección \"Pares\"." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" +"Lista de cadenas de conexión para conexiones de pares salientes en formato " +"URI, p.e. tcp://a.b.c.d:e o socks://a.b.c.d:e/f.g.h.i:j. Estas conexiones " +"obedecerán la tabla de enrutamiento del sistema operativo, por lo tanto, " +"debe usar esta sección cuando pueda conectarse a través de diferentes " +"interfaces." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "Escuchar direcciones" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" +"Escuche las direcciones de las conexiones entrantes. Deberá agregar oyentes " +"para aceptar pares entrantes de nodos no locales. El descubrimiento de pares " +"de multidifusión funcionará independientemente de los oyentes establecidos " +"aquí. Cada escucha debe especificarse en formato URI como se indica arriba, " +"p.e. tcp://0.0.0.0:0 o tcp://[::]:0 para escuchar en todas las interfaces." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "Tamaño de MTU para la interfaz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "Tamaño máximo de todas las colas de conmutación combinadas" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "Interfaces de multidifusión" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" +"El tráfico de red siempre se acepta de esos pares, independientemente de " +"AllowFromDirect o AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" +"El tráfico de red siempre se rechaza de esos pares, independientemente de " +"AllowFromDirect o AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" +"Información opcional del nodo. Debe ser un mapa \"clave\": \"valor\", ...} o " +"establecerse como nulo. Esto es completamente opcional pero, si está " +"configurado, es visible para toda la red a pedido." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Pares" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "Clave de encriptación pública" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "Clave pública" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" +"Expresiones regulares para las cuales se debe activar el descubrimiento de " +"pares de multidifusión de interfaces. Si no se especifica ninguno, el " +"descubrimiento de pares de multidifusión estará desactivado. El valor " +"predeterminado es.* que usa todas las interfaces." + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "Firewall de sesión" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "Configuración de firewall de sesión" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "Establecer .* para la multidifusión en todas las interfaces" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Configuraciones" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "Firma de clave privada" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "Firma de clave pública" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "Subred" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" +"El número de puerto que se utilizará para los escuchas TCP locales de enlace " +"para las interfaces de multidifusión configuradas. Esta opción no afecta a " +"los oyentes especificados en la opción Escuchar. A menos que planee firewall " +"firewall-localtraffic, es mejor dejarlo como el valor predeterminado de 0. " +"Esta opción no se puede cambiar actualmente al volver a cargar la " +"configuración durante el tiempo de ejecución." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "Enrutamiento de túnel" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "Enrutamiento de túnel" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "Claves públicas en la lista blanca" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "Estado del nodo Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "Nombre de la interfaz de red de Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "p.ej. tcp://0.0.0.0:0 o tcp://[::]:0" + +#~ msgid "Enable tap mode" +#~ msgstr "Activar modo tap" + +#~ msgid "" +#~ "Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively" +#~ msgstr "" +#~ "Permitir el tráfico de túnel que no sea Yggdrasil sobre Yggdrasil. Esto " +#~ "efectivamente" + +#~ msgid "By default, nodeinfo contains some defaults including the platform," +#~ msgstr "" +#~ "De forma predeterminada, nodeinfo contiene algunos valores " +#~ "predeterminados, incluida la plataforma," + +#~ msgid "" +#~ "IPv4 subnets belonging to this node's end of the tunnels. Only traffic" +#~ msgstr "" +#~ "Subredes IPv4 que pertenecen al final de los túneles de este nodo. Solo " +#~ "tráfico" + +#~ msgid "" +#~ "IPv6 subnets belonging to this node's end of the tunnels. Only traffic" +#~ msgstr "" +#~ "Subredes IPv6 que pertenecen al extremo de los túneles de este nodo. Solo " +#~ "tráfico" + +#~ msgid "" +#~ "List of connection strings for outbound peer connections in URI format," +#~ msgstr "" +#~ "Lista de cadenas de conexión para conexiones pares salientes en formato " +#~ "URI," + +#~ msgid "Listen addresses for incoming connections. You will need to add" +#~ msgstr "" +#~ "Escuche las direcciones de las conexiones entrantes. Necesitarás agregar" + +#~ msgid "Optional node info. This must be a { \"key\": \"value\", ... } map" +#~ msgstr "" +#~ "Información opcional del nodo. Debe ser un mapa de { \"clave\": \"valor" +#~ "\", ... }" + +#~ msgid "Regular expressions for which interfaces multicast peer discovery" +#~ msgstr "" +#~ "Expresiones regulares para las interfaces de descubrimiento de pares " +#~ "multicast" + +#~ msgid "The port number to be used for the link-local TCP listeners for the" +#~ msgstr "" +#~ "El número de puerto que se utilizará para los escuchas TCP locales de " +#~ "enlace para" diff --git a/applications/luci-app-yggdrasil/po/fi/yggdrasil.po b/applications/luci-app-yggdrasil/po/fi/yggdrasil.po new file mode 100644 index 0000000000..7285e8faf4 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/fi/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-24 17:42+0000\n" +"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" +"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/fi/>\n" +"Language: fi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.2-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Sovitin" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Sovittimen nimi" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Avain" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Vertaiskoneet" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Asetukset" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Tila" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/fr/yggdrasil.po b/applications/luci-app-yggdrasil/po/fr/yggdrasil.po new file mode 100644 index 0000000000..0ac637237c --- /dev/null +++ b/applications/luci-app-yggdrasil/po/fr/yggdrasil.po @@ -0,0 +1,338 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-20 14:20+0000\n" +"Last-Translator: viking76 <liaudetgael@gmail.com>\n" +"Language-Team: French <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/fr/>\n" +"Language: fr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.0.2-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "Pairs actifs" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "Adresse pour écouter les connexions entrantes" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "Autoriser directement" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "Autoriser à distance" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "Clés publiques sur liste noire" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "Activer la confidentialité de NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Réglages généraux" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "Sous-réseau IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "Sous-réseau IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Nom d'interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Clé" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Pairs" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "Clé publique" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Paramètres" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "État" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "Sous-réseau" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" + +#~ msgid "By default, nodeinfo contains some defaults including the platform," +#~ msgstr "" +#~ "Par défaut, nodeinfo contient certains paramètres par défaut, notamment " +#~ "la plate-forme," diff --git a/applications/luci-app-yggdrasil/po/he/yggdrasil.po b/applications/luci-app-yggdrasil/po/he/yggdrasil.po new file mode 100644 index 0000000000..8e47b2cf25 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/he/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/hi/yggdrasil.po b/applications/luci-app-yggdrasil/po/hi/yggdrasil.po new file mode 100644 index 0000000000..03a6500d60 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/hi/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/hu/yggdrasil.po b/applications/luci-app-yggdrasil/po/hu/yggdrasil.po new file mode 100644 index 0000000000..ad4f219d69 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/hu/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-08 19:29+0000\n" +"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" +"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/hu/>\n" +"Language: hu\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10.1-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Általános beállítások" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Csatoló" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Csatoló neve" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Kulcs" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Partnerek" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Beállítások" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Állapot" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/it/yggdrasil.po b/applications/luci-app-yggdrasil/po/it/yggdrasil.po new file mode 100644 index 0000000000..2215106dc8 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/it/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-07 12:33+0000\n" +"Last-Translator: Giuseppe Valitutto <valituttogiuseppe@gmail.com>\n" +"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/it/>\n" +"Language: it\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.0-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Impostazioni generali" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interfaccia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Nome interfaccia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Chiave" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Stato" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/ja/yggdrasil.po b/applications/luci-app-yggdrasil/po/ja/yggdrasil.po new file mode 100644 index 0000000000..6ff3d76e1c --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ja/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-16 16:09+0000\n" +"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" +"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/ja/>\n" +"Language: ja\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.1.1-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "インターフェース" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "インターフェース名" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "ピア" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "設定" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "ステータス" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "サブネット" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/ko/yggdrasil.po b/applications/luci-app-yggdrasil/po/ko/yggdrasil.po new file mode 100644 index 0000000000..d423fb7992 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ko/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: ko\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/mr/yggdrasil.po b/applications/luci-app-yggdrasil/po/mr/yggdrasil.po new file mode 100644 index 0000000000..4c104b0824 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/mr/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-12 11:01+0000\n" +"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" +"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/mr/>\n" +"Language: mr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.11-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "थेट परवानगी द्या" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "रिमोटमधून परवानगी द्या" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "इंटरफेस" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "सेटिंग्ज" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "स्थिती" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/ms/yggdrasil.po b/applications/luci-app-yggdrasil/po/ms/yggdrasil.po new file mode 100644 index 0000000000..93db9fb911 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ms/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/nb_NO/yggdrasil.po b/applications/luci-app-yggdrasil/po/nb_NO/yggdrasil.po new file mode 100644 index 0000000000..ed3e390efc --- /dev/null +++ b/applications/luci-app-yggdrasil/po/nb_NO/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: nb_NO\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/pl/yggdrasil.po b/applications/luci-app-yggdrasil/po/pl/yggdrasil.po new file mode 100644 index 0000000000..1d33f63b3f --- /dev/null +++ b/applications/luci-app-yggdrasil/po/pl/yggdrasil.po @@ -0,0 +1,432 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-27 14:41+0000\n" +"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/pl/>\n" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.2-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "Aktywne peery" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "Adres do nasłuchiwania połączeń przychodzących" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "Zezwalaj bezpośrednio" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "Zezwalaj na zdalne" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "Zezwól na ruch sieciowy z bezpośrednio połączonymi peerami" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" +"Zezwól na ruch sieciowy ze zdalnymi węzłami w sieci, które nie są " +"bezpośrednio podłączone do sieci" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" +"Zezwól na ruch sieciowy wychodzący niezależnie od AllowFromDirect lub " +"AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" +"Zezwalaj na tunelowanie ruchu innego niż Yggdrasil przez Yggdrasil. Pozwala " +"to skutecznie używać Yggdrasil do trasowania lub mostkowania innych sieci, " +"podobnie jak tunel VPN. Tunelowanie działa między dowolnymi dwoma węzłami i " +"nie wymaga ich bezpośredniego podglądu." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "Zawsze zezwalaj na połączenia wychodzące" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "Klucze publiczne na czarnej liście" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" +"Domyślnie nodeinfo zawiera pewne ustawienia domyślne, w tym platformę, " +"architekturę i wersję Yggdrasil. Mogą one pomóc podczas badania sieci i " +"diagnozowania problemów z trasowaniem sieciowym. Włączenie prywatności " +"nodeinfo zapobiega temu, tak że tylko elementy określone w „NodeInfo” są " +"odsyłane, jeśli są określone." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "Włącz prywatność NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "Włącz sesje zapory sieciowej" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "Klucze szyfrujące" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "Zaszyfruj klucz prywatny" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "Zaszyfruj klucz publiczny" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Ustawienia główne" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "Udziel dostępu LuCI do aplikacji yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "Lokalna podsieć IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "Zdalna podsieć IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "Podsieć IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" +"Podsieci IPv6 należące do zdalnych węzłów, zmapowane do publicznych węzłów" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" +"Podsieci IPv4 należące do końca tuneli tego węzła. Tunelowany będzie tylko " +"ruch z tych zakresów." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "Lokalna podsieć IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "Zdalna podsieć IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "Podsieć IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" +"Podsieci IPv6 należące do zdalnych węzłów, zmapowane do publicznych węzłów" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" +"Podsieci IPv6 należące do końca tuneli tego węzła. Tunelowany będzie tylko " +"ruch z tych zakresów (lub adresu IPv6/podsieci węzła Yggdrasil)." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" +"Jeśli jest wyłączona, ruch sieciowy z dowolnego węzła będzie dozwolony. " +"Jeśli ta opcja jest włączona, obowiązują poniższe zasady" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interfejs" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Nazwa interfejsu" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "Interfejs peera" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" +"Zachowaj to w tajemnicy. W przypadku naruszenia bezpieczeństwa wygeneruj " +"nową parę kluczy i IPv6." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Klucz" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "Link lokalnego portu TCP" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" +"Lista ciągów połączeń dla wychodzących połączeń równorzędnych w formacie " +"URI, ułożonych według interfejsu źródłowego, np. {\"eth0\": [tcp: //a.b.c.d: " +"e]}. Należy pamiętać, że ta opcja NIE będzie mieć wpływu na połączenia " +"równorzędne SOCKS i powinny zamiast tego przejść do sekcji \"Peers\"." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" +"Lista ciągów połączeń dla wychodzących połączeń równorzędnych w formacie " +"URI, np. tcp: //a.b.c.d: e lub skarpetki: //a.b.c.d: e / f.g.h.i: j. " +"Połączenia te będą zgodne z tabelą trasowania systemu operacyjnego, dlatego " +"powinieneś skorzystać z tej sekcji, gdy możesz łączyć się za pośrednictwem " +"różnych interfejsów." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "Nasłuchiwanie adresów" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" +"Nasłuchuj adresów połączeń przychodzących. Konieczne będzie dodanie " +"detektorów, aby akceptować przychodzące połączenia równorzędne z węzłów " +"nielokalnych. Wykrywanie elementu równorzędnego multiemisji będzie działać " +"niezależnie od ustawionych tutaj nasłuchiwaczy. Każdy detektor powinien być " +"określony w formacie URI jak wyżej, np. tcp: //0.0.0.0: 0 lub tcp: // [::]: " +"0, aby nasłuchiwać na wszystkich interfejsach." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "Rozmiar MTU dla interfejsu" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "Maksymalny rozmiar wszystkich kolejek przełączników łącznie" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "Interfejsy Multicast" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" +"Ruch sieciowy jest zawsze akceptowany od tych peerów, niezależnie od " +"AllowFromDirect lub AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" +"Ruch sieciowy jest zawsze odrzucany od tych peerów, niezależnie od " +"AllowFromDirect lub AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "Informacje o węźle" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" +"Opcjonalne informacje o węźle. Musi to być mapa {\"klucz\": \"wartość" +"\", ...} lub ustawiona jako null. Jest to całkowicie opcjonalne, ale jeśli " +"jest ustawione, jest widoczne dla całej sieci na żądanie." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Peers" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "Publiczny klucz szyfrujący" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "Klucz publiczny" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" +"Wyrażenia regularne, dla których interfejsy multicast peer discovery powinny " +"być włączone. Jeśli żaden z nich nie został określony, funkcja multi-cast " +"peer discovery jest wyłączona. Domyślną wartością jest .*, która " +"wykorzystuje wszystkie interfejsy." + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "Sesja zapory sieciowej" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "Ustawienia sesji zapory sieciowej" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "Ustaw .* na multicast dla wszystkich interfejsów" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Ustawienia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "Podpisywanie klucza prywatnego" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "Podpisywanie klucza publicznego" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "Podsieć" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" +"Numer portu, który ma być używany dla lokalnych nasłuchiwaczy TCP łącza dla " +"skonfigurowanych interfejsów MulticastInterfaces. Ta opcja nie wpływa na " +"słuchaczy określonych w opcji Listen. O ile nie planujesz zapory ogniowej " +"link-localtraffic, najlepiej pozostawić tę wartość jako domyślną 0. Tej " +"opcji nie można obecnie zmienić poprzez ponowne załadowanie config podczas " +"działania." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "Trasowanie tunelu" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "Trasowanie tunelu" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "Klucze publiczne z białej listy" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "Status węzła Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "Nazwa interfejsu sieciowego Yggdrasil'a" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "np. tcp://0.0.0.0:0 or tcp://[::]:0" + +#~ msgid "Enable tap mode" +#~ msgstr "Włącz tryb dotykowy" + +#~ msgid "" +#~ "Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively" +#~ msgstr "" +#~ "Zezwól na tunelowanie ruchu innego niż Yggdrasil nad Yggdrasil. To " +#~ "skutecznie" + +#~ msgid "By default, nodeinfo contains some defaults including the platform," +#~ msgstr "" +#~ "Domyślnie, nodeinfo zawiera kilka domyślnych ustawień, w tym platformę," + +#~ msgid "" +#~ "IPv4 subnets belonging to this node's end of the tunnels. Only traffic" +#~ msgstr "Podsieci IPv6 należące do końca tunelu tego węzła. Tylko ruch" + +#~ msgid "" +#~ "IPv6 subnets belonging to this node's end of the tunnels. Only traffic" +#~ msgstr "Podsieci IPv6 należące do końca tunelu tego węzła. Tylko ruch" + +#~ msgid "" +#~ "List of connection strings for outbound peer connections in URI format," +#~ msgstr "" +#~ "Lista ciągów połączeń dla wychodzących połączeń równorzędnych w formacie " +#~ "URI," + +#~ msgid "Listen addresses for incoming connections. You will need to add" +#~ msgstr "" +#~ "Nasłuchiwanie adresów dla połączeń przychodzących. Trzeba będzie dodać" + +#~ msgid "Optional node info. This must be a { \"key\": \"value\", ... } map" +#~ msgstr "" +#~ "Opcjonalne informacje o węźle. Musi to być mapa { \"key\": \"value" +#~ "\", ... }" + +#~ msgid "Regular expressions for which interfaces multicast peer discovery" +#~ msgstr "" +#~ "Wyrażenia regularne, dla których interfejs odnajduje peera multicast" + +#~ msgid "The port number to be used for the link-local TCP listeners for the" +#~ msgstr "Numer portu, który ma być użyty dla odbiorców Link-local TCP dla" diff --git a/applications/luci-app-yggdrasil/po/pt/yggdrasil.po b/applications/luci-app-yggdrasil/po/pt/yggdrasil.po new file mode 100644 index 0000000000..758d447513 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/pt/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-19 06:06+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/pt/>\n" +"Language: pt\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10.2\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Configurações gerais" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Nome da interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Chave" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Parceiros" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Configurações" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/pt_BR/yggdrasil.po b/applications/luci-app-yggdrasil/po/pt_BR/yggdrasil.po new file mode 100644 index 0000000000..8256c63e6f --- /dev/null +++ b/applications/luci-app-yggdrasil/po/pt_BR/yggdrasil.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsyggdrasil/pt_BR/>\n" +"Language: pt_BR\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.1-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "Pares ativos" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "Endereço para escuta de conexões de entrada" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "Aceitar diretamente" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "Permitir a partir do remoto" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "Permitir o tráfego de rede vindo de pares diretamente conectados" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" +"Permitir o tráfego de rede a partir de nós remotos na rede que você não " +"esteja diretamente em conexão" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" +"Permitir o tráfego de rede de saída, independentemente do AllowFromDirect ou " +"AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" +"Permitir o tráfego em túneis sem Yggdrasil sobre o Yggdrasil. Isto permite " +"usar o Yggdrasil de forma efetiva para rotear ou fazer a ponte para outras " +"redes, semelhante a um túnel VPN. A construção de túneis funciona entre " +"quaisquer dois nós e não requer que estejam diretamente pareados." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "Sempre permitir a saída" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "Lista negra de chaves públicas" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" +"Por padrão, o nodeinfo contém alguns padrões, incluindo a plataforma, " +"arquitetura e a versão do Yggdrasil. Isso pode ajudar na pesquisa da rede e " +"no diagnóstico de problemas de roteamento da rede. Habilitando a privacidade " +"do nodeinfo impede isso, de modo que somente os itens especificados no " +"\"NodeInfo\" sejam enviados de volta caso sejam especificados." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "Ativar a privacidade NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "Ativar a sessão do firewall" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "Chaves de criptografia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "Chave privada de criptografia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "Chave pública de criptografia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Configurações gerais" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "Conceda acesso UCI ao LuCI app yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "Sub-rede local IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "Sub-rede IPV4 remota" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "Sub-rede IPv4" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" +"Subredes IPv4 pertencentes a nós remotos, mapeadas para o público do nó" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" +"Sub-redes IPv4 pertencentes ao final dos túneis deste nó. Só o tráfego " +"destas faixas serão feito por tunelamento." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "Sub-rede local IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "Sub-rede remota IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "Sub-rede IPv6" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" +"Sub-redes IPv6 pertencentes a nós remotos, mapeadas para o público do nó" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" +"Sub-redes IPv6 pertencentes ao final dos túneis deste nó. Somente o tráfego " +"destas faixas (ou o endereço/subrede IPv6 do nó Yggdrasil) será feito por " +"tunelamento." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" +"Se desativado, o tráfego de rede de qualquer nó será permitido. Se ativado, " +"as regras abaixo se aplicam" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Nome da Interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "Pares de interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" +"Manter privado. Quando for comprometido, gerar um novo par de chaves e IPv6." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Chave" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "Vincular porta TCP local" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" +"Lista de strings de conexão para conexões peer de saída no formato URI, " +"organizada por interface de origem, por exemplo, { \"eth0\": [ tcp://a.b.c.d:" +"e ] }. Observe que as conexões SOCKS NÃO serão afetados por essa opção e " +"devem ir na seção \"Peers\"." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" +"Lista de strings de conexão para conexões pares de saída no formato URI, por " +"exemplo, tcp://a.b.c.d:e ou meias://a.b.c.d:e/f.g.h.i:j. Essas conexões " +"obedecerão à tabela de roteamento do sistema operacional, portanto você deve " +"usar esta seção quando você pode se conectar através de diferentes " +"interfaces." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "Endereços de escuta" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" +"Endereços de escuta para conexões recebidas. Você precisará adicionar " +"ouvintes para aceitar conexões não locais. A descoberta multicast peer " +"funcionará independentemente de qualquer ouvinte definido aqui. Cada ouvinte " +"deve ser especificado em formato URI como acima, por exemplo, " +"tcp://0.0.0.0:0 ou tcp://[:]:0 para que seja possível ouvir em todas as " +"interfaces." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "Tamanho da MTU para a interface" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "Tamanho máximo de todas as filas de switch combinadas" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "Interfaces multicast" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" +"O tráfego de rede é sempre aceito a partir desses pares, independentemente " +"do AllowFromDirect ou AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" +"O tráfego de rede é sempre rejeitado vindo desses pares, independentemente " +"do AllowFromDirect ou AllowFromRemote" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "NodeInfo" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" +"Informações opcionais do nó. Isso deve ser um mapa { \"chave\": \"valor" +"\", ... } ou definido como nulo. Isso é totalmente opcional, mas, se " +"definido, é visível para toda a rede quando requisitado." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Pares" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "Chave de criptografia pública" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "Chave pública" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" +"Expressões regulares para as quais as interfaces multicast de descoberta de " +"pares devem ser ativadas. Caso nenhuma seja especificada, a descoberta de " +"multicast de pares será desativada. O valor predefinido é .* na qual usa " +"todas as interfaces." + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "Sessão do firewall" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "Configuração da sessão do firewall" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "Definir .* para multicast em todas as interfaces" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Configurações" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "Assinatura de chave privada" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "Assinatura de chave pública" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Condição Geral" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "Sub-rede" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" +"O número da porta a ser usado para os ouvintes TCP locais de link para as " +"interfaces Multicast configuradas. Esta opção não afeta os ouvintes " +"especificados na opção Ouvir. A menos que você planeje aplicar regras de " +"firewall no tráfego do link local, é melhor deixar isso como o valor padrão " +"0. Esta opção atualmente não pode ser alterada ao recarregar a configuração " +"durante o tempo de execução." + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "Roteamento do Túnel" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "Roteamento do túnel" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "Lista branca de chaves públicas" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "Condição do nó do Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "Nome da interface de rede Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "ex. tcp://0.0.0.0:0 ou tcp://[::]:0" diff --git a/applications/luci-app-yggdrasil/po/ro/yggdrasil.po b/applications/luci-app-yggdrasil/po/ro/yggdrasil.po new file mode 100644 index 0000000000..77dacf64fe --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ro/yggdrasil.po @@ -0,0 +1,334 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-29 21:22+0000\n" +"Last-Translator: Cristian Ionescu <joker_op@yahoo.com>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/ro/>\n" +"Language: ro\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: Weblate 4.0-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Interfață" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Numele interfeței" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/ru/yggdrasil.po b/applications/luci-app-yggdrasil/po/ru/yggdrasil.po new file mode 100644 index 0000000000..cdf6357e4a --- /dev/null +++ b/applications/luci-app-yggdrasil/po/ru/yggdrasil.po @@ -0,0 +1,334 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-09 21:41+0000\n" +"Last-Translator: sergio <sergio+it@outerface.net>\n" +"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/ru/>\n" +"Language: ru\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.1-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "Активные пиры" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Основные настройки" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Интерфейс" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Имя интерфейса" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Пароль (ключ)" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Пиры" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Настройки" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Состояние" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/sk/yggdrasil.po b/applications/luci-app-yggdrasil/po/sk/yggdrasil.po new file mode 100644 index 0000000000..f00b3a0b1f --- /dev/null +++ b/applications/luci-app-yggdrasil/po/sk/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-04 17:35+0000\n" +"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/sk/>\n" +"Language: sk\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: Weblate 4.0-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Rozhranie" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Názov rozhrania" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Kľúč" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Účastníci" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Nastavenia" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Stav" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/sv/yggdrasil.po b/applications/luci-app-yggdrasil/po/sv/yggdrasil.po new file mode 100644 index 0000000000..1692edcb3e --- /dev/null +++ b/applications/luci-app-yggdrasil/po/sv/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: sv\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/templates/yggdrasil.pot b/applications/luci-app-yggdrasil/po/templates/yggdrasil.pot index 380042f425..cea7301e5b 100644 --- a/applications/luci-app-yggdrasil/po/templates/yggdrasil.pot +++ b/applications/luci-app-yggdrasil/po/templates/yggdrasil.pot @@ -1,132 +1,145 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:32 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 msgid "Active peers" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:57 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 msgid "Address to listen for incoming connections" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 msgid "Allow from direct" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 msgid "Allow from remote" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 msgid "Allow network traffic from directly connected peers" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 msgid "" "Allow network traffic from remote nodes on the network that you are not " "directly peered with" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:20 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 msgid "" "Allow outbound network traffic regardless of AllowFromDirect or " "AllowFromRemote" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:13 -msgid "Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively" +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:20 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 msgid "Always allow outbound" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:30 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 msgid "Blacklisted public keys" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 -msgid "By default, nodeinfo contains some defaults including the platform," +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 msgid "Enable NodeInfo privacy" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:13 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 msgid "Enable session firewall" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:36 -msgid "Enable tap mode" -msgstr "" - -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:10 -#: applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua:13 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 msgid "Encryption keys" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 msgid "Encryption private key" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:13 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 msgid "Encryption public key" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:10 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 msgid "General settings" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:25 +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 msgid "IPv4 local subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:18 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 msgid "IPv4 remote subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:28 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 msgid "IPv4 subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 -msgid "IPv4 subnets belonging to this node's end of the tunnels. Only traffic" +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:39 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 msgid "IPv6 local subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:32 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 msgid "IPv6 remote subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:43 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 msgid "IPv6 subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 -msgid "IPv6 subnets belonging to this node's end of the tunnels. Only traffic" +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 msgid "" "If disabled, network traffic from any node will be allowed. If enabled, the " "below rules apply" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:24 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 msgid "Interface" msgstr "" @@ -134,27 +147,38 @@ msgstr "" msgid "Interface name" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:19 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 msgid "Interface peers" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 msgid "Keep this private. When compromised, generate a new keypair and IPv6." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 msgid "Key" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 msgid "Link-local TCP port" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 -msgid "List of connection strings for outbound peer connections in URI format," +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." msgstr "" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 @@ -162,7 +186,12 @@ msgid "Listen addresses" msgstr "" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 -msgid "Listen addresses for incoming connections. You will need to add" +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." msgstr "" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 @@ -177,50 +206,56 @@ msgstr "" msgid "Multicast interfaces" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 msgid "" "Network traffic is always accepted from those peers, regardless of " "AllowFromDirect or AllowFromRemote" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 msgid "" "Network traffic is always rejected from those peers, regardless of " "AllowFromDirect or AllowFromRemote" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:28 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 msgid "NodeInfo" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 -msgid "Optional node info. This must be a { \"key\": \"value\", ... } map" +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:10 -#: applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua:11 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 msgid "Peers" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 msgid "Public encryption key" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 msgid "Public key" msgstr "" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 -msgid "Regular expressions for which interfaces multicast peer discovery" +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." msgstr "" -#: applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua:14 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 msgid "Session firewall" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:10 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 msgid "Session firewall settings" msgstr "" @@ -228,50 +263,59 @@ msgstr "" msgid "Set .* to multicast on all interfaces" msgstr "" -#: applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua:12 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 msgid "Settings" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 msgid "Signing private key" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 msgid "Signing public key" msgstr "" -#: applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua:9 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 msgid "Status" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:28 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:43 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 msgid "Subnet" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 -msgid "The port number to be used for the link-local TCP listeners for the" +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:10 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 msgid "Tunnel Routing" msgstr "" -#: applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua:15 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 msgid "Tunnel routing" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:23 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 msgid "Whitelisted public keys" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:29 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 msgid "Yggdrasil node status" msgstr "" -#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:13 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 msgid "Yggdrasil's network interface name" msgstr "" diff --git a/applications/luci-app-yggdrasil/po/tr/yggdrasil.po b/applications/luci-app-yggdrasil/po/tr/yggdrasil.po new file mode 100644 index 0000000000..170786f4f1 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/tr/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: tr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/uk/yggdrasil.po b/applications/luci-app-yggdrasil/po/uk/yggdrasil.po new file mode 100644 index 0000000000..0c89cfe596 --- /dev/null +++ b/applications/luci-app-yggdrasil/po/uk/yggdrasil.po @@ -0,0 +1,334 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-17 11:52+0000\n" +"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsyggdrasil/uk/>\n" +"Language: uk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.11-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "Загальні параметри" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "Інтерфейс" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "Назва інтерфейсу" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "Ключ" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Вузли" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "Параметри" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "Стан" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/vi/yggdrasil.po b/applications/luci-app-yggdrasil/po/vi/yggdrasil.po new file mode 100644 index 0000000000..964c577bfe --- /dev/null +++ b/applications/luci-app-yggdrasil/po/vi/yggdrasil.po @@ -0,0 +1,327 @@ +msgid "" +msgstr "" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/po/zh_Hans/yggdrasil.po b/applications/luci-app-yggdrasil/po/zh_Hans/yggdrasil.po new file mode 100644 index 0000000000..168e024b9b --- /dev/null +++ b/applications/luci-app-yggdrasil/po/zh_Hans/yggdrasil.po @@ -0,0 +1,335 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-07 21:24+0000\n" +"Last-Translator: liushuyu011 <liushuyu011@gmail.com>\n" +"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsyggdrasil/zh_Hans/>\n" +"Language: zh_Hans\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.0-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "允许直连" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "总是允许出站流量" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "已拉黑的公钥" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "启用会话防火墙" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "加密密钥" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "加密私钥" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "加密公钥" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "常规设置" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "IPv4 本地子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "IPv4 远程子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "IPv4 子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "IPv6 本地子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "IPv6 远程子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "IPv6 子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "如果禁用,将允许来自任何节点的网络流量。如果启用,将使用下面的规则" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "接口" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "接口名称" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "请保管好该信息。一旦泄露,请重新生成一个新的密钥对和 IPv6。" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "密码" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "监听地址" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "接口的 MTU 大小" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "多播接口" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" +"可选节点信息。此处必须是 { \"键\": \"值\", ... } 格式的键值对或者留空。此信息" +"完全可选,但是一旦设置,整个网络将能看到此信息。" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "Peers" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "公共加密密钥" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "公钥" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "会话防火墙" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "会话防火墙设置" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "设置" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "状态" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "子网" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "隧道路由" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "隧道路由" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "白名单上的公钥" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "Yggdrasil" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "Yggdrasil 节点状态" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "Yggdrasil 网络接口名称" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "例如 tcp://0.0.0.0:0 or tcp://[::]:0" diff --git a/applications/luci-app-yggdrasil/po/zh_Hant/yggdrasil.po b/applications/luci-app-yggdrasil/po/zh_Hant/yggdrasil.po new file mode 100644 index 0000000000..0835a292bb --- /dev/null +++ b/applications/luci-app-yggdrasil/po/zh_Hant/yggdrasil.po @@ -0,0 +1,333 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-28 19:19+0000\n" +"Last-Translator: Hulen <shift0106@gmail.com>\n" +"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsyggdrasil/zh_Hant/>\n" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.2-dev\n" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 +msgid "Active peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:56 +msgid "Address to listen for incoming connections" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:16 +msgid "Allow from direct" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:18 +msgid "Allow from remote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:17 +msgid "Allow network traffic from directly connected peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:19 +msgid "" +"Allow network traffic from remote nodes on the network that you are not " +"directly peered with" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "" +"Allow outbound network traffic regardless of AllowFromDirect or " +"AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:14 +msgid "" +"Allow tunneling non-Yggdrasil traffic over Yggdrasil. This effectively " +"allows you to use Yggdrasil to route to, or to bridge other networks, " +"similar to a VPN tunnel. Tunnelling works between any two nodes and does not " +"require them to be directly peered." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:21 +msgid "Always allow outbound" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:31 +msgid "Blacklisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 +msgid "" +"By default, nodeinfo contains some defaults including the platform, " +"architecture and Yggdrasil version. These can help when surveying the " +"network and diagnosing network routing problems. Enabling nodeinfo privacy " +"prevents this, so that only items specified in \"NodeInfo\" are sent back if " +"specified." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:22 +msgid "Enable NodeInfo privacy" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:14 +msgid "Enable session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:41 +msgid "Encryption keys" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:15 +msgid "Encryption private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:14 +msgid "Encryption public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:11 +msgid "General settings" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json:3 +msgid "Grant access to LuCI app yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:26 +msgid "IPv4 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:19 +msgid "IPv4 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +msgid "IPv4 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:20 +msgid "IPv4 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:27 +msgid "" +"IPv4 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:40 +msgid "IPv6 local subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:33 +msgid "IPv6 remote subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "IPv6 subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:34 +msgid "IPv6 subnets belonging to remote nodes, mapped to the node's public" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:41 +msgid "" +"IPv6 subnets belonging to this node's end of the tunnels. Only traffic from " +"these ranges (or the Yggdrasil node's IPv6 address/subnet) will be tunnelled." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:15 +msgid "" +"If disabled, network traffic from any node will be allowed. If enabled, the " +"below rules apply" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:25 +msgid "Interface" +msgstr "介面" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:45 +msgid "Interface name" +msgstr "介面名稱" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:20 +msgid "Interface peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:16 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:19 +msgid "Keep this private. When compromised, generate a new keypair and IPv6." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:15 +msgid "Link-local TCP port" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 +msgid "" +"List of connection strings for outbound peer connections in URI format, " +"arranged by source interface, e.g. { \"eth0\": [ tcp://a.b.c.d:e ] }. Note " +"that SOCKS peerings will NOT be affected by this option and should go in the " +"\"Peers\" section instead." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:12 +msgid "" +"List of connection strings for outbound peer connections in URI format, e.g. " +"tcp://a.b.c.d:e or socks://a.b.c.d:e/f.g.h.i:j. These connections will obey " +"the operating system routing table, therefore you should use this section " +"when you may connect via different interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 +msgid "Listen addresses" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 +msgid "" +"Listen addresses for incoming connections. You will need to add listeners in " +"order to accept incoming peerings from non-local nodes. Multicast peer " +"discovery will work regardless of any listeners set here. Each listener " +"should be specified in URI format as above, e.g. tcp://0.0.0.0:0 or tcp://" +"[::]:0 to listen on all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:37 +msgid "MTU size for the interface" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:39 +msgid "Maximum size of all switch queues combined" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:41 +msgid "Multicast interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:25 +msgid "" +"Network traffic is always accepted from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:32 +msgid "" +"Network traffic is always rejected from those peers, regardless of " +"AllowFromDirect or AllowFromRemote" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:29 +msgid "NodeInfo" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:30 +msgid "" +"Optional node info. This must be a { \"key\": \"value\", ... } map or set as " +"null. This is entirely optional but, if set, is visible to the whole network " +"on request." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:11 +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:23 +msgid "Peers" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:21 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:35 +msgid "Public encryption key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:26 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:33 +msgid "Public key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:42 +msgid "" +"Regular expressions for which interfaces multicast peer discovery should be " +"enabled on. If none specified, multicast peer discovery is disabled. The " +"default value is .* which uses all interfaces." +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:50 +msgid "Session firewall" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:11 +msgid "Session firewall settings" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:46 +msgid "Set .* to multicast on all interfaces" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 +msgid "Settings" +msgstr "設定" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:18 +msgid "Signing private key" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/keys.js:17 +msgid "Signing public key" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:14 +msgid "Status" +msgstr "狀態" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:22 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:29 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:36 +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:44 +msgid "Subnet" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 +msgid "" +"The port number to be used for the link-local TCP listeners for the " +"configured MulticastInterfaces. This option does not affect " +"listenersspecified in the Listen option. Unless you plan to firewall link-" +"localtraffic, it is best to leave this as the default value of 0. This " +"option cannot currently be changed by reloading config during runtime." +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/tunnel_routing.js:11 +msgid "Tunnel Routing" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:59 +msgid "Tunnel routing" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/session_firewall.js:24 +msgid "Whitelisted public keys" +msgstr "" + +#: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:3 +msgid "Yggdrasil" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:30 +msgid "Yggdrasil node status" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:14 +msgid "Yggdrasil's network interface name" +msgstr "" + +#: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:58 +msgid "e.g. tcp://0.0.0.0:0 or tcp://[::]:0" +msgstr "" diff --git a/applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json b/applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json new file mode 100644 index 0000000000..2947461e58 --- /dev/null +++ b/applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json @@ -0,0 +1,66 @@ +{ + "admin/network/yggdrasil": { + "title": "Yggdrasil", + "action": { + "type": "firstchild" + }, + "depends": { + "acl": [ "luci-app-yggdrasil" ], + "uci": { "yggdrasil": true } + } + }, + + "admin/network/yggdrasil/status": { + "title": "Status", + "order": 1, + "action": { + "type": "view", + "path": "yggdrasil/status" + } + }, + + "admin/network/yggdrasil/peers": { + "title": "Peers", + "order": 2, + "action": { + "type": "view", + "path": "yggdrasil/peers" + } + }, + + "admin/network/yggdrasil/settings": { + "title": "Settings", + "order": 3, + "action": { + "type": "view", + "path": "yggdrasil/settings" + } + }, + + "admin/network/yggdrasil/keys": { + "title": "Encryption keys", + "order": 4, + "action": { + "type": "view", + "path": "yggdrasil/keys" + } + }, + + "admin/network/yggdrasil/session_firewall": { + "title": "Session firewall", + "order": 5, + "action": { + "type": "view", + "path": "yggdrasil/session_firewall" + } + }, + + "admin/network/yggdrasil/tunnel_routing": { + "title": "Tunnel routing", + "order": 6, + "action": { + "type": "view", + "path": "yggdrasil/tunnel_routing" + } + } +} diff --git a/applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json b/applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json index 22e00ef8fa..ab44102950 100644 --- a/applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json +++ b/applications/luci-app-yggdrasil/root/usr/share/rpcd/acl.d/luci-app-yggdrasil.json @@ -1,10 +1,14 @@ { "luci-app-yggdrasil": { "description": "Grant access to LuCI app yggdrasil", + "read": { + "uci": [ "yggdrasil" ] + }, "write": { "file": { "/usr/sbin/yggdrasilctl": [ "exec" ] - } + }, + "uci": [ "yggdrasil" ] } } } |