1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Update luci-base

This commit is contained in:
Ycarus 2018-06-04 22:10:32 +02:00
parent 54f07a7e1e
commit 0a00c769a1
41 changed files with 885 additions and 3727 deletions

50
luci-base/Makefile.orig Normal file
View file

@ -0,0 +1,50 @@
#
# Copyright (C) 2008-2015 The LuCI Team <luci@lists.subsignal.org>
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-base
LUCI_TYPE:=mod
LUCI_BASENAME:=base
LUCI_TITLE:=LuCI core libraries
LUCI_DEPENDS:=+lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc +liblucihttp-lua
PKG_SOURCE:=LuaSrcDiet-0.12.1.tar.bz2
PKG_SOURCE_URL:=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/luasrcdiet
PKG_HASH:=ed7680f2896269ae8633756e7edcf09050812f78c8f49e280e63c30d14f35aea
PKG_LICENSE:=Apache-2.0
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/LuaSrcDiet-0.12.1
include $(INCLUDE_DIR)/host-build.mk
define Package/luci-base/conffiles
/etc/luci-uploads
/etc/config/luci
/etc/config/ucitrack
endef
include ../../luci.mk
define Host/Configure
endef
define Host/Compile
$(MAKE) -C src/ clean po2lmo
$(MAKE) -C $(HOST_BUILD_DIR) bin/LuaSrcDiet.lua
endef
define Host/Install
$(INSTALL_DIR) $(1)/bin
$(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/LuaSrcDiet.lua $(1)/bin/LuaSrcDiet
endef
$(eval $(call HostBuild))
# call BuildPackage - OpenWrt buildroot signature

View file

@ -1244,44 +1244,44 @@ function cbi_validate_field(cbid, optional, type)
function cbi_row_swap(elem, up, store) function cbi_row_swap(elem, up, store)
{ {
var tr = elem.parentNode; var tr = elem.parentNode;
while (tr && tr.nodeName.toLowerCase() != 'tr')
while (tr && !tr.classList.contains('cbi-section-table-row'))
tr = tr.parentNode; tr = tr.parentNode;
if (!tr) if (!tr)
return false; return false;
var table = tr.parentNode; if (up) {
while (table && table.nodeName.toLowerCase() != 'table') var prev = tr.previousElementSibling;
table = table.parentNode;
if (!table) if (prev && prev.classList.contains('cbi-section-table-row'))
return false; tr.parentNode.insertBefore(tr, prev);
else
return;
}
else {
var next = tr.nextElementSibling ? tr.nextElementSibling.nextElementSibling : null;
var s = up ? 3 : 2; if (next && next.classList.contains('cbi-section-table-row'))
var e = up ? table.rows.length : table.rows.length - 1; tr.parentNode.insertBefore(tr, next);
else if (!next)
for (var idx = s; idx < e; idx++) tr.parentNode.appendChild(tr);
{ else
if (table.rows[idx] == tr) return;
{
if (up)
tr.parentNode.insertBefore(table.rows[idx], table.rows[idx-1]);
else
tr.parentNode.insertBefore(table.rows[idx+1], table.rows[idx]);
break;
}
} }
var ids = [ ]; var ids = [ ];
for (idx = 2; idx < table.rows.length; idx++)
{
table.rows[idx].className = table.rows[idx].className.replace(
/cbi-rowstyle-[12]/, 'cbi-rowstyle-' + (1 + (idx % 2))
);
if (table.rows[idx].id && table.rows[idx].id.match(/-([^\-]+)$/) ) for (var i = 0, n = 0; i < tr.parentNode.childNodes.length; i++) {
ids.push(RegExp.$1); var node = tr.parentNode.childNodes[i];
if (node.classList && node.classList.contains('cbi-section-table-row')) {
node.classList.remove('cbi-rowstyle-1');
node.classList.remove('cbi-rowstyle-2');
node.classList.add((n++ % 2) ? 'cbi-rowstyle-2' : 'cbi-rowstyle-1');
if (/-([^\-]+)$/.test(node.id))
ids.push(RegExp.$1);
}
} }
var input = document.getElementById(store); var input = document.getElementById(store);
@ -1311,58 +1311,6 @@ function cbi_tag_last(container)
} }
} }
String.prototype.serialize = function()
{
var o = this;
switch(typeof(o))
{
case 'object':
// null
if( o == null )
{
return 'null';
}
// array
else if( o.length )
{
var i, s = '';
for( var i = 0; i < o.length; i++ )
s += (s ? ', ' : '') + String.serialize(o[i]);
return '[ ' + s + ' ]';
}
// object
else
{
var k, s = '';
for( k in o )
s += (s ? ', ' : '') + k + ': ' + String.serialize(o[k]);
return '{ ' + s + ' }';
}
break;
case 'string':
// complex string
if( o.match(/[^a-zA-Z0-9_,.: -]/) )
return 'decodeURIComponent("' + encodeURIComponent(o) + '")';
// simple string
else
return '"' + o + '"';
break;
default:
return o.toString();
}
}
String.prototype.format = function() String.prototype.format = function()
{ {
if (!RegExp) if (!RegExp)
@ -1473,10 +1421,6 @@ String.prototype.format = function()
subst = esc(param, quot_esc); subst = esc(param, quot_esc);
break; break;
case 'j':
subst = String.serialize(param);
break;
case 't': case 't':
var td = 0; var td = 0;
var th = 0; var th = 0;
@ -1543,14 +1487,6 @@ String.prototype.nobr = function()
return this.replace(/[\s\n]+/g, '&#160;'); return this.replace(/[\s\n]+/g, '&#160;');
} }
String.serialize = function()
{
var a = [ ];
for (var i = 1; i < arguments.length; i++)
a.push(arguments[i]);
return ''.serialize.apply(arguments[0], a);
}
String.format = function() String.format = function()
{ {
var a = [ ]; var a = [ ];
@ -1566,3 +1502,75 @@ String.nobr = function()
a.push(arguments[i]); a.push(arguments[i]);
return ''.nobr.apply(arguments[0], a); return ''.nobr.apply(arguments[0], a);
} }
var dummyElem, domParser;
function isElem(e)
{
return (typeof(e) === 'object' && e !== null && 'nodeType' in e);
}
function toElem(s)
{
var elem;
try {
domParser = domParser || new DOMParser();
elem = domParser.parseFromString(s, 'text/html').body.firstChild;
}
catch(e) {}
if (!elem) {
try {
dummyElem = dummyElem || document.createElement('div');
dummyElem.innerHTML = s;
elem = dummyElem.firstChild;
}
catch (e) {}
}
return elem || null;
}
function E()
{
var html = arguments[0],
attr = (arguments[1] instanceof Object && !Array.isArray(arguments[1])) ? arguments[1] : null,
data = attr ? arguments[2] : arguments[1],
elem;
if (isElem(html))
elem = html;
else if (html.charCodeAt(0) === 60)
elem = toElem(html);
else
elem = document.createElement(html);
if (!elem)
return null;
if (attr)
for (var key in attr)
if (attr.hasOwnProperty(key))
elem.setAttribute(key, attr[key]);
if (typeof(data) === 'function')
data = data(elem);
if (isElem(data)) {
elem.appendChild(data);
}
else if (Array.isArray(data)) {
for (var i = 0; i < data.length; i++)
if (isElem(data[i]))
elem.appendChild(data[i]);
else
elem.appendChild(document.createTextNode('' + data[i]));
}
else if (data !== null && data !== undefined) {
elem.innerHTML = '' + data;
}
return elem;
}

View file

@ -1226,13 +1226,14 @@ function TypedSection.parse(self, novld)
local stval = RESORT_PREFIX .. self.config .. "." .. self.sectiontype local stval = RESORT_PREFIX .. self.config .. "." .. self.sectiontype
local order = self.map:formvalue(stval) local order = self.map:formvalue(stval)
if order and #order > 0 then if order and #order > 0 then
local sid local sids, sid = { }, nil
local num = 0
for sid in util.imatch(order) do for sid in util.imatch(order) do
self.map.uci:reorder(self.config, sid, num) sids[#sids+1] = sid
num = num + 1 end
if #sids > 0 then
self.map.uci:reorder(self.config, sids)
self.changed = true
end end
self.changed = (num > 0)
end end
end end

View file

@ -358,7 +358,7 @@ function dispatch(request)
elseif key == "REQUEST_URI" then elseif key == "REQUEST_URI" then
return build_url(unpack(ctx.requestpath)) return build_url(unpack(ctx.requestpath))
elseif key == "FULL_REQUEST_URI" then elseif key == "FULL_REQUEST_URI" then
local url = { http.getenv("SCRIPT_NAME") or "" , http.getenv("PATH_INFO") } local url = { http.getenv("SCRIPT_NAME") or "", http.getenv("PATH_INFO") }
local query = http.getenv("QUERY_STRING") local query = http.getenv("QUERY_STRING")
if query and #query > 0 then if query and #query > 0 then
url[#url+1] = "?" url[#url+1] = "?"
@ -507,10 +507,11 @@ function dispatch(request)
else else
ok, err = util.copcall(target, unpack(args)) ok, err = util.copcall(target, unpack(args))
end end
assert(ok, if not ok then
"Failed to execute " .. (type(c.target) == "function" and "function" or c.target.type or "unknown") .. error500("Failed to execute " .. (type(c.target) == "function" and "function" or c.target.type or "unknown") ..
" dispatcher target for entry '/" .. table.concat(request, "/") .. "'.\n" .. " dispatcher target for entry '/" .. table.concat(request, "/") .. "'.\n" ..
"The called action terminated with an exception:\n" .. tostring(err or "(unknown)")) "The called action terminated with an exception:\n" .. tostring(err or "(unknown)"))
end
else else
local root = node() local root = node()
if not root or not root.target then if not root or not root.target then

View file

@ -100,6 +100,8 @@ end
-- Scope manipulation routines -- Scope manipulation routines
-- --
coxpt = setmetatable({}, { __mode = "kv" })
local tl_meta = { local tl_meta = {
__mode = "k", __mode = "k",
@ -697,73 +699,69 @@ function checklib(fullpathexe, wantedlib)
return false return false
end end
-------------------------------------------------------------------------------
-- Coroutine safe xpcall and pcall versions
-- --
-- Coroutine safe xpcall and pcall versions modified for Luci -- Encapsulates the protected calls with a coroutine based loop, so errors can
-- original version: -- be dealed without the usual Lua 5.x pcall/xpcall issues with coroutines
-- coxpcall 1.13 - Copyright 2005 - Kepler Project (www.keplerproject.org) -- yielding inside the call to pcall or xpcall.
-- --
-- Copyright © 2005 Kepler Project. -- Authors: Roberto Ierusalimschy and Andre Carregal
-- Permission is hereby granted, free of charge, to any person obtaining a -- Contributors: Thomas Harning Jr., Ignacio Burgueño, Fabio Mascarenhas
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
-- --
-- The above copyright notice and this permission notice shall be -- Copyright 2005 - Kepler Project
-- included in all copies or substantial portions of the Software.
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -- $Id: coxpcall.lua,v 1.13 2008/05/19 19:20:02 mascarenhas Exp $
-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -------------------------------------------------------------------------------
-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
local performResume, handleReturnValue -------------------------------------------------------------------------------
local oldpcall, oldxpcall = pcall, xpcall -- Implements xpcall with coroutines
coxpt = {} -------------------------------------------------------------------------------
setmetatable(coxpt, {__mode = "kv"}) local coromap = setmetatable({}, { __mode = "k" })
-- Identity function for copcall local function handleReturnValue(err, co, status, ...)
local function copcall_id(trace, ...)
return ...
end
-- values of either the function or the error handler
function coxpcall(f, err, ...)
local res, co = oldpcall(coroutine.create, f)
if not res then
local params = {...}
local newf = function() return f(unpack(params)) end
co = coroutine.create(newf)
end
local c = coroutine.running()
coxpt[co] = coxpt[c] or c or 0
return performResume(err, co, ...)
end
-- values of the function or the error object
function copcall(f, ...)
return coxpcall(f, copcall_id, ...)
end
-- Handle return value of protected call
function handleReturnValue(err, co, status, ...)
if not status then if not status then
return false, err(debug.traceback(co, (...)), ...) return false, err(debug.traceback(co, (...)), ...)
end end
if coroutine.status(co) == 'suspended' then
if coroutine.status(co) ~= 'suspended' then return performResume(err, co, coroutine.yield(...))
else
return true, ... return true, ...
end end
return performResume(err, co, coroutine.yield(...))
end end
-- Resume execution of protected function call
function performResume(err, co, ...) function performResume(err, co, ...)
return handleReturnValue(err, co, coroutine.resume(co, ...)) return handleReturnValue(err, co, coroutine.resume(co, ...))
end end
local function id(trace, ...)
return trace
end
function coxpcall(f, err, ...)
local current = coroutine.running()
if not current then
if err == id then
return pcall(f, ...)
else
if select("#", ...) > 0 then
local oldf, params = f, { ... }
f = function() return oldf(unpack(params)) end
end
return xpcall(f, err)
end
else
local res, co = pcall(coroutine.create, f)
if not res then
local newf = function(...) return f(...) end
co = coroutine.create(newf)
end
coromap[co] = current
coxpt[co] = coxpt[current] or current or 0
return performResume(err, co, ...)
end
end
function copcall(f, ...)
return coxpcall(f, id, ...)
end

View file

@ -1,59 +1,98 @@
<% export("cbi_apply_widget", function(redirect_ok) -%> <% export("cbi_apply_widget", function(redirect_ok) -%>
<style type="text/css"> <style type="text/css">
#cbi_apply_status { .alert-message.notice {
background: linear-gradient(#fff 0%, #eee 100%);
}
#cbi_apply_overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
display: none;
z-index: 20000;
}
#cbi_apply_overlay .alert-message {
position: relative;
top: 10%;
width: 60%;
margin: auto;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
min-height: 32px; min-height: 32px;
align-items: center; align-items: center;
margin: 1.5em 0 1.5em 0;
} }
#cbi_apply_status > h4, #cbi_apply_overlay .alert-message > h4,
#cbi_apply_status > p, #cbi_apply_overlay .alert-message > p,
#cbi_apply_status > div { #cbi_apply_overlay .alert-message > div {
flex-basis: 100%; flex-basis: 100%;
} }
#cbi_apply_status > img { #cbi_apply_overlay .alert-message > img {
margin-right: 1em; margin-right: 1em;
flex-basis: 32px; flex-basis: 32px;
} }
#cbi_apply_status + script + .cbi-section { body.apply-overlay-active {
margin-top: -1em; overflow: hidden;
height: 100vh;
} }
.alert-message.notice { body.apply-overlay-active #cbi_apply_overlay {
background: linear-gradient(#fff 0%, #eee 100%); display: block;
} }
</style> </style>
<script type="text/javascript" src="<%=resource%>/cbi.js"></script> <script type="text/javascript" src="<%=resource%>/cbi.js?v=git-18.138.59467-72fe5dd"></script>
<script type="text/javascript">//<![CDATA[ <script type="text/javascript">//<![CDATA[
var xhr = new XHR(), var xhr = new XHR(),
stat, indicator,
uci_apply_auth = { sid: '<%=luci.dispatcher.context.authsession%>', token: '<%=token%>' }, uci_apply_auth = { sid: '<%=luci.dispatcher.context.authsession%>', token: '<%=token%>' },
uci_apply_rollback = <%=math.max(luci.config and luci.config.apply and luci.config.apply.rollback or 30, 30)%>, uci_apply_rollback = <%=math.max(luci.config and luci.config.apply and luci.config.apply.rollback or 30, 30)%>,
uci_apply_holdoff = <%=math.max(luci.config and luci.config.apply and luci.config.apply.holdoff or 4, 1)%>, uci_apply_holdoff = <%=math.max(luci.config and luci.config.apply and luci.config.apply.holdoff or 4, 1)%>,
uci_apply_timeout = <%=math.max(luci.config and luci.config.apply and luci.config.apply.timeout or 5, 1)%>, uci_apply_timeout = <%=math.max(luci.config and luci.config.apply and luci.config.apply.timeout or 5, 1)%>,
uci_apply_display = <%=math.max(luci.config and luci.config.apply and luci.config.apply.display or 1.5, 1)%>; uci_apply_display = <%=math.max(luci.config and luci.config.apply and luci.config.apply.display or 1.5, 1)%>;
function uci_status_message(type, content) {
var overlay = document.getElementById('cbi_apply_overlay') || document.body.appendChild(E('<div id="cbi_apply_overlay"><div class="alert-message"></div></div>')),
message = overlay.querySelector('.alert-message');
if (message && type) {
if (!message.classList.contains(type)) {
message.classList.remove('notice');
message.classList.remove('warning');
message.classList.add(type);
}
if (content)
message.innerHTML = content;
document.body.classList.add('apply-overlay-active');
}
else {
document.body.classList.remove('apply-overlay-active');
}
}
function uci_rollback(checked) { function uci_rollback(checked) {
if (checked) { if (checked) {
stat.classList.remove('notice'); uci_status_message('warning',
stat.classList.add('warning'); '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' +
stat.innerHTML = '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' + '<%:Failed to confirm apply within %ds, waiting for rollback…%>'.format(uci_apply_rollback));
'<%:Failed to confirm apply within %ds, waiting for rollback…%>'.format(uci_apply_rollback);
var call = function(r) { var call = function(r) {
if (r.status === 204) { if (r.status === 204) {
stat.innerHTML = '<h4><%:Configuration has been rolled back!%></h4>' + uci_status_message('warning',
'<h4><%:Configuration has been rolled back!%></h4>' +
'<p><%:The device could not be reached within %d seconds after applying the pending changes, which caused the configuration to be rolled back for safety reasons. If you believe that the configuration changes are correct nonetheless, perform an unchecked configuration apply. Alternatively, you can dismiss this warning and edit changes before attempting to apply again, or revert all pending changes to keep the currently working configuration state.%></p>'.format(uci_apply_rollback) + '<p><%:The device could not be reached within %d seconds after applying the pending changes, which caused the configuration to be rolled back for safety reasons. If you believe that the configuration changes are correct nonetheless, perform an unchecked configuration apply. Alternatively, you can dismiss this warning and edit changes before attempting to apply again, or revert all pending changes to keep the currently working configuration state.%></p>'.format(uci_apply_rollback) +
'<div class="right">' + '<div class="right">' +
'<input type="button" class="btn" onclick="this.parentNode.parentNode.style.display=\'none\'" value="<%:Dismiss%>" /> ' + '<input type="button" class="btn" onclick="uci_status_message(false)" value="<%:Dismiss%>" /> ' +
'<input type="button" class="btn" onclick="uci_revert()" value="<%:Revert changes%>" /> ' + '<input type="button" class="btn" onclick="uci_revert()" value="<%:Revert changes%>" /> ' +
'<input type="button" class="btn danger" onclick="uci_apply(false)" value="<%:Apply unchecked%>" />' + '<input type="button" class="btn danger" onclick="uci_apply(false)" value="<%:Apply unchecked%>" />' +
'</div>'; '</div>');
return; return;
} }
@ -64,10 +103,9 @@
call({ status: 0 }); call({ status: 0 });
} }
else { else {
stat.classList.remove('notice'); uci_status_message('warning',
stat.classList.add('warning'); '<h4><%:Device unreachable!%></h4>' +
stat.innerHTML = '<h4><%:Device unreachable!%></h4>' + '<p><%:Could not regain access to the device after applying the configuration changes. You might need to reconnect if you modified network related settings such as the IP address or wireless security credentials.%></p>');
'<p><%:Could not regain access to the device after applying the configuration changes. You might need to reconnect if you modified network related settings such as the IP address or wireless security credentials.%></p>';
} }
} }
@ -75,12 +113,7 @@
var tt; var tt;
var ts = Date.now(); var ts = Date.now();
stat = document.getElementById('cbi_apply_status'); uci_status_message('notice');
stat.style.display = '';
stat.classList.remove('warning');
stat.classList.add('notice');
indicator = document.querySelector('.uci_change_indicator');
var call = function(r) { var call = function(r) {
if (Date.now() >= deadline) { if (Date.now() >= deadline) {
@ -88,15 +121,18 @@
return; return;
} }
else if (r && (r.status === 200 || r.status === 204)) { else if (r && (r.status === 200 || r.status === 204)) {
if (indicator) var indicator = document.querySelector('.uci_change_indicator');
indicator.style.display = 'none'; if (indicator) indicator.style.display = 'none';
stat.innerHTML = '<%:Configuration has been applied.%>'; uci_status_message('notice', '<%:Configuration has been applied.%>');
window.clearTimeout(tt); window.clearTimeout(tt);
window.setTimeout(function() { window.setTimeout(function() {
stat.style.display = 'none'; <% if redirect_ok then -%>
<% if redirect_ok then %>location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>');<% end %> location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>');
<%- else -%>
window.location = window.location.href.split('#')[0];
<% end %>
}, uci_apply_display * 1000); }, uci_apply_display * 1000);
return; return;
@ -108,8 +144,9 @@
var tick = function() { var tick = function() {
var now = Date.now(); var now = Date.now();
stat.innerHTML = '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' + uci_status_message('notice',
'<%:Waiting for configuration to get applied… %ds%>'.format(Math.max(Math.floor((deadline - Date.now()) / 1000), 0)); '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' +
'<%:Waiting for configuration to get applied… %ds%>'.format(Math.max(Math.floor((deadline - Date.now()) / 1000), 0)));
if (now >= deadline) if (now >= deadline)
return; return;
@ -125,43 +162,39 @@
} }
function uci_apply(checked) { function uci_apply(checked) {
stat = document.getElementById('cbi_apply_status'); uci_status_message('notice',
stat.style.display = ''; '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' +
stat.classList.remove('warning'); '<%:Starting configuration apply…%>');
stat.classList.add('notice');
stat.innerHTML = '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' +
'<%:Starting configuration apply…%>';
xhr.post('<%=url("admin/uci")%>/' + (checked ? 'apply_rollback' : 'apply_unchecked'), uci_apply_auth, function(r) { xhr.post('<%=url("admin/uci")%>/' + (checked ? 'apply_rollback' : 'apply_unchecked'), uci_apply_auth, function(r) {
if (r.status === (checked ? 200 : 204)) { if (r.status === (checked ? 200 : 204)) {
uci_confirm(checked, Date.now() + uci_apply_rollback * 1000); uci_confirm(checked, Date.now() + uci_apply_rollback * 1000);
} }
else if (checked && r.status === 204) { else if (checked && r.status === 204) {
stat.innerHTML = '<%:There are no changes to apply.%>'; uci_status_message('notice', '<%:There are no changes to apply.%>');
window.setTimeout(function() { window.setTimeout(function() {
stat.style.display = 'none'; <% if redirect_ok then -%>
<% if redirect_ok then %>location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>');<% end %> location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>');
<%- else -%>
uci_status_message(false);
<%- end %>
}, uci_apply_display * 1000); }, uci_apply_display * 1000);
} }
else { else {
stat.classList.add('warning'); uci_status_message('warning', '<%_Apply request failed with status <code>%h</code>%>'.format(r.responseText || r.statusText || r.status));
stat.classList.remove('notice'); window.setTimeout(function() { uci_status_message(false); }, uci_apply_display * 1000);
stat.innerHTML = '<%_Apply request failed with status <code>%h</code>%>'.format(r.responseText || r.statusText || r.status);
} }
}); });
} }
function uci_revert() { function uci_revert() {
stat = document.getElementById('cbi_apply_status'); uci_status_message('notice',
stat.style.display = ''; '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' +
stat.classList.remove('warning'); '<%:Reverting configuration…%>');
stat.classList.add('notice');
stat.innerHTML = '<img src="<%=resource%>/icons/loading.gif" alt="" style="vertical-align:middle" /> ' +
'<%:Reverting configuration…%>';
xhr.post('<%=url("admin/uci/revert")%>', uci_apply_auth, function(r) { xhr.post('<%=url("admin/uci/revert")%>', uci_apply_auth, function(r) {
if (r.status === 200) { if (r.status === 200) {
stat.innerHTML = '<%:Changes have been reverted.%>'; uci_status_message('notice', '<%:Changes have been reverted.%>');
window.setTimeout(function() { window.setTimeout(function() {
<% if redirect_ok then -%> <% if redirect_ok then -%>
location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>'); location.href = decodeURIComponent('<%=luci.util.urlencode(redirect_ok)%>');
@ -171,9 +204,8 @@
}, uci_apply_display * 1000); }, uci_apply_display * 1000);
} }
else { else {
stat.classList.add('warning'); uci_status_message('warning', '<%_Revert request failed with status <code>%h</code>%>'.format(r.statusText || r.status));
stat.classList.remove('notice'); window.setTimeout(function() { uci_status_message(false); }, uci_apply_display * 1000);
stat.innerHTML = '<%_Revert request failed with status <code>%h</code>%>'.format(r.statusText || r.status);
} }
}); });
} }

View file

@ -1,2 +1,2 @@
</div> </div>
</td> </div>

View file

@ -1,2 +1,2 @@
<td class="cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %>"> <div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %>">
<div id="cbi-<%=self.config.."-"..section.."-"..self.option%>" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>"> <div id="cbi-<%=self.config.."-"..section.."-"..self.option%>" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>">

View file

@ -1,5 +1,5 @@
<%- if firstmap and messages then local msg; for _, msg in ipairs(messages) do -%> <%- if firstmap and messages then local msg; for _, msg in ipairs(messages) do -%>
<div class="errorbox"><%=pcdata(msg)%></div> <div class="alert-message warning"><%=pcdata(msg)%></div>
<%- end end -%> <%- end end -%>
<div class="cbi-map" id="cbi-<%=self.config%>"> <div class="cbi-map" id="cbi-<%=self.config%>">

View file

@ -27,52 +27,52 @@ end
<div class="cbi-section-descr"><%=self.description%></div> <div class="cbi-section-descr"><%=self.description%></div>
<div class="cbi-section-node"> <div class="cbi-section-node">
<%- local count = 0 -%> <%- local count = 0 -%>
<table class="cbi-section-table"> <div class="table cbi-section-table">
<tr class="cbi-section-table-titles"> <div class="tr cbi-section-table-titles">
<%- if not self.anonymous then -%> <%- if not self.anonymous then -%>
<%- if self.sectionhead then -%> <%- if self.sectionhead then -%>
<th class="cbi-section-table-cell"><%=self.sectionhead%></th> <div class="th cbi-section-table-cell"><%=self.sectionhead%></div>
<%- else -%> <%- else -%>
<th>&#160;</th> <div class="th">&#160;</div>
<%- end -%> <%- end -%>
<%- count = count +1; end -%> <%- count = count +1; end -%>
<%- for i, k in pairs(self.children) do if not k.optional then -%> <%- for i, k in pairs(self.children) do if not k.optional then -%>
<th class="cbi-section-table-cell"<%=width(k)%>> <div class="th cbi-section-table-cell"<%=width(k)%>>
<%- if k.titleref then -%><a title="<%=self.titledesc or translate('Go to relevant configuration page')%>" class="cbi-title-ref" href="<%=k.titleref%>"><%- end -%> <%- if k.titleref then -%><a title="<%=self.titledesc or translate('Go to relevant configuration page')%>" class="cbi-title-ref" href="<%=k.titleref%>"><%- end -%>
<%-=k.title-%> <%-=k.title-%>
<%- if k.titleref then -%></a><%- end -%> <%- if k.titleref then -%></a><%- end -%>
</th> </div>
<%- count = count + 1; end; end; if self.sortable then -%> <%- count = count + 1; end; end; if self.sortable then -%>
<th class="cbi-section-table-cell"><%:Sort%></th> <div class="th cbi-section-table-cell"><%:Sort%></div>
<%- count = count + 1; end; if self.extedit or self.addremove then -%> <%- count = count + 1; end; if self.extedit or self.addremove then -%>
<th class="cbi-section-table-cell">&#160;</th> <div class="th cbi-section-table-cell">&#160;</div>
<%- count = count + 1; end -%> <%- count = count + 1; end -%>
</tr> </div>
<tr class="cbi-section-table-descr"> <div class="tr cbi-section-table-descr">
<%- if not self.anonymous then -%> <%- if not self.anonymous then -%>
<%- if self.sectiondesc then -%> <%- if self.sectiondesc then -%>
<th class="cbi-section-table-cell"><%=self.sectiondesc%></th> <div class="th cbi-section-table-cell"><%=self.sectiondesc%></div>
<%- else -%> <%- else -%>
<th></th> <div class="th"></div>
<%- end -%> <%- end -%>
<%- end -%> <%- end -%>
<%- for i, k in pairs(self.children) do if not k.optional then -%> <%- for i, k in pairs(self.children) do if not k.optional then -%>
<th class="cbi-section-table-cell"<%=width(k)%>><%=k.description%></th> <div class="th cbi-section-table-cell"<%=width(k)%>><%=k.description%></div>
<%- end; end; if self.sortable then -%> <%- end; end; if self.sortable then -%>
<th class="cbi-section-table-cell"></th> <div class="th cbi-section-table-cell"></div>
<%- end; if self.extedit or self.addremove then -%> <%- end; if self.extedit or self.addremove then -%>
<th class="cbi-section-table-cell"></th> <div class="th cbi-section-table-cell"></div>
<%- end -%> <%- end -%>
</tr> </div>
<%- local isempty = true <%- local isempty = true
for i, k in ipairs(self:cfgsections()) do for i, k in ipairs(self:cfgsections()) do
section = k section = k
isempty = false isempty = false
scope = { valueheader = "cbi/cell_valueheader", valuefooter = "cbi/cell_valuefooter" } scope = { valueheader = "cbi/cell_valueheader", valuefooter = "cbi/cell_valuefooter" }
-%> -%>
<tr class="cbi-section-table-row<% if self.extedit or self.rowcolors then %> cbi-rowstyle-<%=rowstyle()%><% end %>" id="cbi-<%=self.config%>-<%=section%>"> <div class="tr cbi-section-table-row<% if self.extedit or self.rowcolors then %> cbi-rowstyle-<%=rowstyle()%><% end %>" id="cbi-<%=self.config%>-<%=section%>">
<% if not self.anonymous then -%> <% if not self.anonymous then -%>
<th><h3><%=(type(self.sectiontitle) == "function") and self:sectiontitle(section) or k%></h3></th> <div class="th"><h3><%=(type(self.sectiontitle) == "function") and self:sectiontitle(section) or k%></h3></div>
<%- end %> <%- end %>
@ -85,14 +85,14 @@ end
-%> -%>
<%- if self.sortable then -%> <%- if self.sortable then -%>
<td class="cbi-section-table-cell"> <div class="td cbi-section-table-cell">
<input class="cbi-button cbi-button-up" type="button" value="" onclick="return cbi_row_swap(this, true, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" alt="<%:Move up%>" title="<%:Move up%>" /> <input class="cbi-button cbi-button-up" type="button" value="" onclick="return cbi_row_swap(this, true, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" alt="<%:Move up%>" title="<%:Move up%>" />
<input class="cbi-button cbi-button-down" type="button" value="" onclick="return cbi_row_swap(this, false, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" alt="<%:Move down%>" title="<%:Move down%>" /> <input class="cbi-button cbi-button-down" type="button" value="" onclick="return cbi_row_swap(this, false, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" alt="<%:Move down%>" title="<%:Move down%>" />
</td> </div>
<%- end -%> <%- end -%>
<%- if self.extedit or self.addremove then -%> <%- if self.extedit or self.addremove then -%>
<td class="cbi-section-table-cell"> <div class="td cbi-section-table-cell">
<%- if self.extedit then -%> <%- if self.extedit then -%>
<input class="cbi-button cbi-button-edit" type="button" value="<%:Edit%>" <input class="cbi-button cbi-button-edit" type="button" value="<%:Edit%>"
<%- if type(self.extedit) == "string" then <%- if type(self.extedit) == "string" then
@ -104,17 +104,17 @@ end
<%- end; if self.addremove then %> <%- end; if self.addremove then %>
<input class="cbi-button cbi-button-remove" type="submit" value="<%:Delete%>" onclick="this.form.cbi_state='del-section'; return true" name="cbi.rts.<%=self.config%>.<%=k%>" alt="<%:Delete%>" title="<%:Delete%>" /> <input class="cbi-button cbi-button-remove" type="submit" value="<%:Delete%>" onclick="this.form.cbi_state='del-section'; return true" name="cbi.rts.<%=self.config%>.<%=k%>" alt="<%:Delete%>" title="<%:Delete%>" />
<%- end -%> <%- end -%>
</td> </div>
<%- end -%> <%- end -%>
</tr> </div>
<%- end -%> <%- end -%>
<%- if isempty then -%> <%- if isempty then -%>
<tr class="cbi-section-table-row"> <div class="tr cbi-section-table-row">
<td colspan="<%=count%>"><em><br /><%:This section contains no values yet%></em></td> <div class="td" colspan="<%=count%>"><em><br /><%:This section contains no values yet%></em></div>
</tr> </div>
<%- end -%> <%- end -%>
</table> </div>
<% if self.error then %> <% if self.error then %>
<div class="cbi-section-error"> <div class="cbi-section-error">

View file

@ -8,7 +8,9 @@
<form method="post" action="<%=pcdata(FULL_REQUEST_URI)%>"> <form method="post" action="<%=pcdata(FULL_REQUEST_URI)%>">
<%- if fuser then %> <%- if fuser then %>
<div class="errorbox"><%:Invalid username and/or password! Please try again.%></div> <div class="alert-message warning">
<p><%:Invalid username and/or password! Please try again.%></p>
</div>
<% end -%> <% end -%>
<div class="cbi-map"> <div class="cbi-map">

View file

@ -174,9 +174,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -213,9 +210,6 @@ msgstr "Número de dispositiu ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Concentrador d'accés" msgstr "Concentrador d'accés"
@ -323,11 +317,6 @@ msgstr "Permet respostes del rang 127.0.0.0/8, p.e. per serveis RBL"
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -412,6 +401,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -426,6 +418,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Estacions associades" msgstr "Estacions associades"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -517,9 +512,6 @@ msgstr "Adreça mal especificada!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -707,9 +699,6 @@ msgstr "Connectat"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Límit de connexió" msgstr "Límit de connexió"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Connexions" msgstr "Connexions"
@ -847,9 +836,6 @@ msgstr "Passarel·la per defecte"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Estat per defecte" msgstr "Estat per defecte"
@ -1381,9 +1367,6 @@ msgstr "Penja"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1444,8 +1427,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Tallafocs IPv4" msgstr "Tallafocs IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Estat WAN IPv4" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Adreça IPv4" msgstr "Adreça IPv4"
@ -1495,15 +1478,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Estat WAN IPv6" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Adreça IPv6" msgstr "Adreça IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2082,9 +2062,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidats de servidor NTP" msgstr "Candidats de servidor NTP"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
@ -2262,12 +2239,6 @@ msgstr "Opció treta"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2728,9 +2699,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2813,9 +2781,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2841,14 +2806,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2902,17 +2859,6 @@ msgstr "Clients separats"
msgid "Server Settings" msgid "Server Settings"
msgstr "Ajusts de servidor" msgstr "Ajusts de servidor"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Nom de servei" msgstr "Nom de servei"
@ -3006,9 +2952,6 @@ msgstr "Ordena"
msgid "Source" msgid "Source"
msgstr "Origen" msgstr "Origen"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Especifica el directori a que el dispositiu està adjuntat" msgstr "Especifica el directori a que el dispositiu està adjuntat"
@ -3303,11 +3246,6 @@ msgstr ""
"connectar-te de nou a l'encaminador, depenent de la configuració que hi " "connectar-te de nou a l'encaminador, depenent de la configuració que hi "
"tinguis." "tinguis."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3468,15 +3406,6 @@ msgstr "Interfície del túnel"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Potència Tx" msgstr "Potència Tx"
@ -3652,12 +3581,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Classe de venidor per enviar al sol·licitar DHCP" msgstr "Classe de venidor per enviar al sol·licitar DHCP"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Verifica" msgstr "Verifica"
@ -3689,10 +3612,6 @@ msgstr ""
"La xifratge WPA requereix que sigui instal·lat el wpa_supplicant (pel mode " "La xifratge WPA requereix que sigui instal·lat el wpa_supplicant (pel mode "
"client) o el hostapd (pels modes AP i ad hoc)." "client) o el hostapd (pels modes AP i ad hoc)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Esperant que s'apliquin els canvis..." msgstr "Esperant que s'apliquin els canvis..."
@ -3716,12 +3635,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3865,9 +3778,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "fitxer <abbr title=\"Domain Name System\">DNS</abbr> local" msgstr "fitxer <abbr title=\"Domain Name System\">DNS</abbr> local"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3943,6 +3853,12 @@ msgstr "sí"
msgid "« Back" msgid "« Back"
msgstr "« Enrere" msgstr "« Enrere"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Estat WAN IPv4"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Estat WAN IPv6"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Aplica" #~ msgstr "Aplica"

View file

@ -169,9 +169,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -208,9 +205,6 @@ msgstr "číslo ATM zařízení"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Přístupový koncentrátor" msgstr "Přístupový koncentrátor"
@ -319,11 +313,6 @@ msgstr "Povolit upstream odpovědi na 127.0.0.0/8 rozsah, např. pro RBL služby
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -408,6 +397,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -422,6 +414,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Připojení klienti" msgstr "Připojení klienti"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -512,9 +507,6 @@ msgstr "Zadána neplatná adresa!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -701,9 +693,6 @@ msgstr "Připojeno"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Omezení počtu připojení" msgstr "Omezení počtu připojení"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Připojení" msgstr "Připojení"
@ -841,9 +830,6 @@ msgstr "Výchozí brána"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Výchozí stav" msgstr "Výchozí stav"
@ -1381,9 +1367,6 @@ msgstr "Zavěsit"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1443,8 +1426,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 firewall" msgstr "IPv4 firewall"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Stav IPv4 WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 adresa" msgstr "IPv4 adresa"
@ -1494,15 +1477,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Stav IPv6 WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6 adresa" msgstr "IPv6 adresa"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2090,9 +2070,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Kandidáti NTP serveru" msgstr "Kandidáti NTP serveru"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Název" msgstr "Název"
@ -2269,12 +2246,6 @@ msgstr "Volba odstraněna"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2752,9 +2723,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2838,9 +2806,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2865,14 +2830,6 @@ msgstr "Spustit kontrolu souborového systému"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2928,17 +2885,6 @@ msgstr "Oddělovat klienty"
msgid "Server Settings" msgid "Server Settings"
msgstr "Nastavení serveru" msgstr "Nastavení serveru"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Název služby" msgstr "Název služby"
@ -3035,9 +2981,6 @@ msgstr "Seřadit"
msgid "Source" msgid "Source"
msgstr "Zdroj" msgstr "Zdroj"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3346,11 +3289,6 @@ msgstr ""
"nastavení, bude možná nutné obnovit adresu vašeho počítače, aby jste se " "nastavení, bude možná nutné obnovit adresu vašeho počítače, aby jste se "
"mohli znovu připojit." "mohli znovu připojit."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3508,15 +3446,6 @@ msgstr "Rozhraní tunelu"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Tx-Power" msgstr "Tx-Power"
@ -3695,12 +3624,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Ověřit" msgstr "Ověřit"
@ -3732,10 +3655,6 @@ msgstr ""
"Šifrování WPA vyžaduje nainstalovaný wpa_supplicant (pro klientský režim) " "Šifrování WPA vyžaduje nainstalovaný wpa_supplicant (pro klientský režim) "
"nebo hostapd (pro AP a ad-hoc režim)." "nebo hostapd (pro AP a ad-hoc režim)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Čekání na realizaci změn..." msgstr "Čekání na realizaci změn..."
@ -3759,12 +3678,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3906,9 +3819,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "místní <abbr title=\"Domain Name System\">DNS</abbr> soubor" msgstr "místní <abbr title=\"Domain Name System\">DNS</abbr> soubor"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3984,6 +3894,12 @@ msgstr "ano"
msgid "« Back" msgid "« Back"
msgstr "« Zpět" msgstr "« Zpět"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Stav IPv4 WAN"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Stav IPv6 WAN"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Použít" #~ msgstr "Použít"

View file

@ -172,9 +172,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -211,9 +208,6 @@ msgstr "ATM Geräteindex"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Access Concentrator" msgstr "Access Concentrator"
@ -322,13 +316,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "Erlaubte IP-Adressen" msgstr "Erlaubte IP-Adressen"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
"Siehe auch <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> bei SIXXS."
msgid "Always announce default router" msgid "Always announce default router"
msgstr "Immer Defaultrouter ankündigen" msgstr "Immer Defaultrouter ankündigen"
@ -415,6 +402,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -433,6 +423,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Assoziierte Clients" msgstr "Assoziierte Clients"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "Berechtigungsgruppe" msgstr "Berechtigungsgruppe"
@ -523,9 +516,6 @@ msgstr "Ungültige Adresse angegeben!"
msgid "Band" msgid "Band"
msgstr "Frequenztyp" msgstr "Frequenztyp"
msgid "Behind NAT"
msgstr "NAT"
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -725,9 +715,6 @@ msgstr "Verbunden"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Verbindungslimit" msgstr "Verbindungslimit"
msgid "Connection to server fails when TLS cannot be used"
msgstr "TLS zwingend vorraussetzen und abbrechen wenn TLS fehlschlägt."
msgid "Connections" msgid "Connections"
msgstr "Verbindungen" msgstr "Verbindungen"
@ -865,9 +852,6 @@ msgstr "Default Gateway"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "Der Standardwert ist zustandslos und zustandsorientiert" msgstr "Der Standardwert ist zustandslos und zustandsorientiert"
msgid "Default route"
msgstr "Default Route"
msgid "Default state" msgid "Default state"
msgstr "Ausgangszustand" msgstr "Ausgangszustand"
@ -1420,9 +1404,6 @@ msgstr "Auflegen"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "Anzahl Header-Error-Code-Fehler (HEC)" msgstr "Anzahl Header-Error-Code-Fehler (HEC)"
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1481,8 +1462,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 Firewall" msgstr "IPv4 Firewall"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4 WAN Status" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 Adresse" msgstr "IPv4 Adresse"
@ -1532,15 +1513,12 @@ msgstr "IPv6 Einstellungen"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "IPv6 ULA-Präfix" msgstr "IPv6 ULA-Präfix"
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6 WAN Status" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6 Adresse" msgstr "IPv6 Adresse"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr "Zum lokalen Tunnelendpunkt delegierte IPv6-Adresse (optional)"
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "IPv6 Zuweisungshinweis" msgstr "IPv6 Zuweisungshinweis"
@ -2155,9 +2133,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP Server Kandidaten" msgstr "NTP Server Kandidaten"
msgid "NTP sync time-out"
msgstr "NTP Synchronisierungstimeout"
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
@ -2336,14 +2311,6 @@ msgstr "Option entfernt"
msgid "Optional" msgid "Optional"
msgstr "Optional" msgstr "Optional"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
"Optional, angeben um den Standardserver (tic.sixxs.net) zu überschreiben"
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
"Optional, angeben wenn das SIXSS Konto mehr als einen Tunnel beinhaltet"
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2838,9 +2805,6 @@ msgstr "IPv6-Adresse anfordern"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "IPv6-Präfix dieser Länge anfordern" msgstr "IPv6-Präfix dieser Länge anfordern"
msgid "Require TLS"
msgstr "TLS erfordern"
msgid "Required" msgid "Required"
msgstr "Benötigt" msgstr "Benötigt"
@ -2932,9 +2896,6 @@ msgstr "Erlaubte IP-Addressen routen"
msgid "Route type" msgid "Route type"
msgstr "Routen-Typ" msgstr "Routen-Typ"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr "Geroutetes IPv6-Präfix für nachgelagerte Schnittstellen"
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "Router-Advertisement-Dienst" msgstr "Router-Advertisement-Dienst"
@ -2960,14 +2921,6 @@ msgstr "Dateisystemprüfung durchführen"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -3023,19 +2976,6 @@ msgstr "Clients isolieren"
msgid "Server Settings" msgid "Server Settings"
msgstr "Servereinstellungen" msgstr "Servereinstellungen"
msgid "Server password"
msgstr "Server Passwort"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
"Server Passwort bzw. das tunnelspezifische Passwort wenn der Benutzername "
"eine Tunnel-ID beinhaltet."
msgid "Server username"
msgstr "Server Benutzername"
msgid "Service Name" msgid "Service Name"
msgstr "Service-Name" msgstr "Service-Name"
@ -3136,9 +3076,6 @@ msgstr "Sortieren"
msgid "Source" msgid "Source"
msgstr "Quelle" msgstr "Quelle"
msgid "Source routing"
msgstr "Quell-Routing"
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Nennt das Verzeichnis, an welches das Gerät angebunden ist" msgstr "Nennt das Verzeichnis, an welches das Gerät angebunden ist"
@ -3466,13 +3403,6 @@ msgstr ""
"Konfiguration ist es notwendig, dass Sie auf Ihrem Computer eine neue IP-" "Konfiguration ist es notwendig, dass Sie auf Ihrem Computer eine neue IP-"
"Adresse beziehen müssen um auf das Gerät zugreifen zu können." "Adresse beziehen müssen um auf das Gerät zugreifen zu können."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
"Der lokale Tunnel-Endpunkt ist hinter einem NAT. Standard ist deaktiviert, "
"nur auf AYIYA anwendbar."
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3645,15 +3575,6 @@ msgstr "Tunnelschnittstelle"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "Basisschnittstelle" msgstr "Basisschnittstelle"
msgid "Tunnel broker protocol"
msgstr "Tunnel-Boker-Protokoll"
msgid "Tunnel setup server"
msgstr "Tunnel-Setup-Server"
msgid "Tunnel type"
msgstr "Tunneltyp"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Sendestärke" msgstr "Sendestärke"
@ -3835,12 +3756,6 @@ msgstr "Hersteller"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse" msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse"
msgid "Verbose"
msgstr "Umfangreiche Ausgaben"
msgid "Verbose logging by aiccu daemon"
msgstr "Aktiviert erweiterte Protokollierung durch den AICCU-Prozess"
msgid "Verify" msgid "Verify"
msgstr "Verifizieren" msgstr "Verifizieren"
@ -3872,12 +3787,6 @@ msgstr ""
"WPA-Verschlüsselung benötigt wpa_supplicant (für Client-Modus) oder hostapd " "WPA-Verschlüsselung benötigt wpa_supplicant (für Client-Modus) oder hostapd "
"(für AP oder Ad-Hoc Modus)." "(für AP oder Ad-Hoc Modus)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
"Warte die angegebene Anzahl an Sekunden auf NTP-Synchronisierung, der Wert 0 "
"deaktiviert das Warten (optional)"
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Änderungen werden angewandt..." msgstr "Änderungen werden angewandt..."
@ -3905,13 +3814,6 @@ msgstr ""
"Wenn PSK in Verwendung ist, können PMK-Schlüssel lokal ohne Inter-Access-" "Wenn PSK in Verwendung ist, können PMK-Schlüssel lokal ohne Inter-Access-"
"Point-Kommunikation erzeugt werden." "Point-Kommunikation erzeugt werden."
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
"Gibt an, ob eine IPv6-Default-Route durch den Tunnel etabliert werden soll"
msgid "Whether to route only packets from delegated prefixes"
msgstr "Gibt an, ob nur Pakete von delegierten Präfixen geroutet werden sollen"
msgid "Width" msgid "Width"
msgstr "Breite" msgstr "Breite"
@ -4053,9 +3955,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "Lokale DNS-Datei" msgstr "Lokale DNS-Datei"
msgid "minimum 1280, maximum 1480"
msgstr "Minimum 1280, Maximum 1480"
msgid "minutes" msgid "minutes"
msgstr "Minuten" msgstr "Minuten"
@ -4131,125 +4030,8 @@ msgstr "ja"
msgid "« Back" msgid "« Back"
msgstr "« Zurück" msgstr "« Zurück"
#~ msgid "Apply" #~ msgid "IPv4 WAN Status"
#~ msgstr "Anwenden" #~ msgstr "IPv4 WAN Status"
#~ msgid "Applying changes" #~ msgid "IPv6 WAN Status"
#~ msgstr "Änderungen werden angewandt" #~ msgstr "IPv6 WAN Status"
#~ msgid "Configuration applied."
#~ msgstr "Konfiguration angewendet."
#~ msgid "Save &#38; Apply"
#~ msgstr "Speichern &#38; Anwenden"
#~ msgid "The following changes have been committed"
#~ msgstr "Die folgenden Änderungen wurden angewendet"
#~ msgid "There are no pending changes to apply!"
#~ msgstr "Es gibt keine ausstehenen Änderungen anzuwenden!"
#~ msgid "Action"
#~ msgstr "Aktion"
#~ msgid "Buttons"
#~ msgstr "Knöpfe"
#~ msgid "Handler"
#~ msgstr "Handler"
#~ msgid "Maximum hold time"
#~ msgstr "Maximalzeit zum Halten der Verbindung"
#~ msgid "Minimum hold time"
#~ msgstr "Minimalzeit zum Halten der Verbindung"
#~ msgid "Path to executable which handles the button event"
#~ msgstr "Ausführbare Datei welche das Schalter-Ereignis verarbeitet"
#~ msgid "Specifies the button state to handle"
#~ msgstr "Gibt den zu behandelnden Tastenstatus an"
#~ msgid "This page allows the configuration of custom button actions"
#~ msgstr ""
#~ "Diese Seite ermöglicht die Konfiguration benutzerdefinierter "
#~ "Tastenaktionen"
#~ msgid "Leasetime"
#~ msgstr "Laufzeit"
#~ msgid "Optional."
#~ msgstr "Optional"
#~ msgid "AuthGroup"
#~ msgstr "Berechtigungsgruppe"
#~ msgid "automatic"
#~ msgstr "automatisch"
#~ msgid "AR Support"
#~ msgstr "AR-Unterstützung"
#~ msgid "Atheros 802.11%s Wireless Controller"
#~ msgstr "Atheros 802.11%s W-LAN Adapter"
#~ msgid "Background Scan"
#~ msgstr "Hintergrundscan"
#~ msgid "Compression"
#~ msgstr "Kompression"
#~ msgid "Disable HW-Beacon timer"
#~ msgstr "Deaktiviere Hardware-Beacon Zeitgeber"
#~ msgid "Do not send probe responses"
#~ msgstr "Scan-Anforderungen nicht beantworten"
#~ msgid "Fast Frames"
#~ msgstr "Schnelle Frames"
#~ msgid "Maximum Rate"
#~ msgstr "Höchstübertragungsrate"
#~ msgid "Minimum Rate"
#~ msgstr "Mindestübertragungsrate"
#~ msgid "Multicast Rate"
#~ msgstr "Multicastrate"
#~ msgid "Outdoor Channels"
#~ msgstr "Funkkanal für den Ausseneinsatz"
#~ msgid "Regulatory Domain"
#~ msgstr "Geltungsbereich (Regulatory Domain)"
#~ msgid "Separate WDS"
#~ msgstr "Separates WDS"
#~ msgid "Static WDS"
#~ msgstr "Statisches WDS"
#~ msgid "Turbo Mode"
#~ msgstr "Turbo Modus"
#~ msgid "XR Support"
#~ msgstr "XR-Unterstützung"
#~ msgid "An additional network will be created if you leave this unchecked."
#~ msgstr ""
#~ "Erzeugt ein zusätzliches Netzwerk wenn diese Option nicht ausgewählt ist"
#~ msgid "Join Network: Settings"
#~ msgstr "Netzwerk beitreten: Einstellungen"
#~ msgid "CPU"
#~ msgstr "Prozessor"
#~ msgid "Port %d"
#~ msgstr "Port %d"
#~ msgid "Port %d is untagged in multiple VLANs!"
#~ msgstr "Port %d ist untagged in mehreren VLANs!"
#~ msgid "VLAN Interface"
#~ msgstr "VLAN Schnittstelle"

View file

@ -172,9 +172,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -211,9 +208,6 @@ msgstr "Αριθμός συσκευής ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Συγκεντρωτής Πρόσβασης " msgstr "Συγκεντρωτής Πρόσβασης "
@ -326,11 +320,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -415,6 +404,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -429,6 +421,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Συνδεδεμένοι Σταθμοί" msgstr "Συνδεδεμένοι Σταθμοί"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -520,9 +515,6 @@ msgstr "Μη έγκυρη διεύθυνση!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -710,9 +702,6 @@ msgstr "Συνδεδεμένος"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Όριο Συνδέσεων" msgstr "Όριο Συνδέσεων"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Συνδέσεις" msgstr "Συνδέσεις"
@ -850,9 +839,6 @@ msgstr "Προεπιλεγμένη πύλη"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Προεπιλεγμένη κατάσταση" msgstr "Προεπιλεγμένη κατάσταση"
@ -1395,9 +1381,6 @@ msgstr "Κρέμασμα"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1456,7 +1439,7 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 Τείχος Προστασίας" msgstr "IPv4 Τείχος Προστασίας"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1507,15 +1490,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Κατάσταση IPv6 WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Διεύθυνση IPv6" msgstr "Διεύθυνση IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2098,9 +2078,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Όνομα" msgstr "Όνομα"
@ -2278,12 +2255,6 @@ msgstr "Η επιλογή αφαιρέθηκε"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2745,9 +2716,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2830,9 +2798,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2859,14 +2824,6 @@ msgstr "Εκτέλεση ελέγχου συστήματος αρχείων"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2921,17 +2878,6 @@ msgstr "Απομόνωση Πελατών"
msgid "Server Settings" msgid "Server Settings"
msgstr "Ρυθμίσεις Εξυπηρετητή" msgstr "Ρυθμίσεις Εξυπηρετητή"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Όνομα Υπηρεσίας" msgstr "Όνομα Υπηρεσίας"
@ -3024,9 +2970,6 @@ msgstr "Ταξινόμηση"
msgid "Source" msgid "Source"
msgstr "Πηγή" msgstr "Πηγή"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3310,11 +3253,6 @@ msgstr ""
"είναι πιθανό να χρειαστεί να ανανεώσετε την διεύθυνση του υπολογιστή σας για " "είναι πιθανό να χρειαστεί να ανανεώσετε την διεύθυνση του υπολογιστή σας για "
"να αποκτήσετε ξανά πρόσβαση στη συσκευή." "να αποκτήσετε ξανά πρόσβαση στη συσκευή."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3467,15 +3405,6 @@ msgstr "Διεπαφή Τούνελ"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Ισχύς Εκπομπής" msgstr "Ισχύς Εκπομπής"
@ -3648,12 +3577,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3683,10 +3606,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3710,12 +3629,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3858,9 +3771,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "τοπικό αρχείο <abbr title=\"Domain Name System\">DNS</abbr>" msgstr "τοπικό αρχείο <abbr title=\"Domain Name System\">DNS</abbr>"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3936,6 +3846,9 @@ msgstr "ναι"
msgid "« Back" msgid "« Back"
msgstr "« Πίσω" msgstr "« Πίσω"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Κατάσταση IPv6 WAN"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Εφαρμογή" #~ msgstr "Εφαρμογή"

View file

@ -172,9 +172,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -211,9 +208,6 @@ msgstr "ATM device number"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Access Concentrator" msgstr "Access Concentrator"
@ -317,11 +311,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -406,6 +395,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -420,6 +412,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Associated Stations" msgstr "Associated Stations"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -510,9 +505,6 @@ msgstr "Bad address specified!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -697,9 +689,6 @@ msgstr "Connected"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Connection Limit" msgstr "Connection Limit"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Connections" msgstr "Connections"
@ -837,9 +826,6 @@ msgstr "Default gateway"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Default state" msgstr "Default state"
@ -1370,9 +1356,6 @@ msgstr "Hang Up"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1430,7 +1413,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1481,15 +1464,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2065,9 +2045,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
@ -2245,12 +2222,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2711,9 +2682,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2796,9 +2764,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2824,14 +2789,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2885,17 +2842,6 @@ msgstr "Separate Clients"
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2988,9 +2934,6 @@ msgstr ""
msgid "Source" msgid "Source"
msgstr "Source" msgstr "Source"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3270,11 +3213,6 @@ msgstr ""
"address of your computer to reach the device again, depending on your " "address of your computer to reach the device again, depending on your "
"settings." "settings."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3424,15 +3362,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3605,12 +3534,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3642,10 +3565,6 @@ msgstr ""
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3669,12 +3588,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3815,9 +3728,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""

View file

@ -174,9 +174,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -213,9 +210,6 @@ msgstr "Número de dispositivo ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Concentrador de acceso" msgstr "Concentrador de acceso"
@ -323,11 +317,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -412,6 +401,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -426,6 +418,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Estaciones asociadas" msgstr "Estaciones asociadas"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -516,9 +511,6 @@ msgstr "¡Dirección no válida!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -706,9 +698,6 @@ msgstr "Conectado"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Límite de conexión" msgstr "Límite de conexión"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Conexiones" msgstr "Conexiones"
@ -846,9 +835,6 @@ msgstr "Gateway por defecto"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Estado por defecto" msgstr "Estado por defecto"
@ -1391,9 +1377,6 @@ msgstr "Suspender"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1452,8 +1435,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Cortafuegos IPv4" msgstr "Cortafuegos IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Estado de la WAN IPv4" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Dirección IPv4" msgstr "Dirección IPv4"
@ -1503,15 +1486,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Estado de la WAN IPv6" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Dirección IPv6" msgstr "Dirección IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2104,9 +2084,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Servidores NTP a consultar" msgstr "Servidores NTP a consultar"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nombre" msgstr "Nombre"
@ -2283,12 +2260,6 @@ msgstr "Opción eliminada"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2765,9 +2736,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2850,9 +2818,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2878,14 +2843,6 @@ msgstr "Comprobar el sistema de ficheros"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2941,17 +2898,6 @@ msgstr "Aislar clientes"
msgid "Server Settings" msgid "Server Settings"
msgstr "Configuración del servidor" msgstr "Configuración del servidor"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Nombre de servicio" msgstr "Nombre de servicio"
@ -3048,9 +2994,6 @@ msgstr "Ordenar"
msgid "Source" msgid "Source"
msgstr "Origen" msgstr "Origen"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Especifica el directorio al que está enlazado el dispositivo" msgstr "Especifica el directorio al que está enlazado el dispositivo"
@ -3366,11 +3309,6 @@ msgstr ""
"Espere unos minutos antes de reconectar. Es posible que tenga que renovar la " "Espere unos minutos antes de reconectar. Es posible que tenga que renovar la "
"conexión de su ordenador para poder acceder de nuevo al dispositivo." "conexión de su ordenador para poder acceder de nuevo al dispositivo."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3533,15 +3471,6 @@ msgstr "Interfaz de túnel"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Potencia-TX" msgstr "Potencia-TX"
@ -3721,12 +3650,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Clase de vendedor a enviar cuando solicite DHCP" msgstr "Clase de vendedor a enviar cuando solicite DHCP"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Verificar" msgstr "Verificar"
@ -3758,10 +3681,6 @@ msgstr ""
"WPA-Encryption necesita que estén instalados wpa_supplicant (para el modo " "WPA-Encryption necesita que estén instalados wpa_supplicant (para el modo "
"cliente o hostapd (para los modos AP y ad-hoc)." "cliente o hostapd (para los modos AP y ad-hoc)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Esperando a que se realicen los cambios..." msgstr "Esperando a que se realicen los cambios..."
@ -3785,12 +3704,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3933,9 +3846,6 @@ msgstr "Kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "Archvo <abbr title=\"Domain Name System\">DNS</abbr> local" msgstr "Archvo <abbr title=\"Domain Name System\">DNS</abbr> local"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -4011,6 +3921,12 @@ msgstr "sí"
msgid "« Back" msgid "« Back"
msgstr "« Volver" msgstr "« Volver"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Estado de la WAN IPv4"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Estado de la WAN IPv6"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Aplicar" #~ msgstr "Aplicar"

View file

@ -173,9 +173,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -216,9 +213,6 @@ msgstr "Numéro de périphérique ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Concentrateur d'accès" msgstr "Concentrateur d'accès"
@ -329,11 +323,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -418,6 +407,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -432,6 +424,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Équipements associés" msgstr "Équipements associés"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -522,9 +517,6 @@ msgstr "Adresse spécifiée incorrecte!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -713,9 +705,6 @@ msgstr "Connecté"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Limite de connexion" msgstr "Limite de connexion"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Connexions" msgstr "Connexions"
@ -853,9 +842,6 @@ msgstr "Passerelle par défaut"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "État par défaut" msgstr "État par défaut"
@ -1402,9 +1388,6 @@ msgstr "Signal (HUP)"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1464,8 +1447,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Pare-feu IPv4" msgstr "Pare-feu IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "État IPv4 du WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Adresse IPv4" msgstr "Adresse IPv4"
@ -1515,15 +1498,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "État IPv6 du WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Adresse IPv6" msgstr "Adresse IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2118,9 +2098,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Serveurs NTP candidats" msgstr "Serveurs NTP candidats"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
@ -2296,12 +2273,6 @@ msgstr "Option retirée"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2778,9 +2749,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2863,9 +2831,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2892,14 +2857,6 @@ msgstr "Faire une vérification du système de fichiers"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2955,17 +2912,6 @@ msgstr "Isoler les clients"
msgid "Server Settings" msgid "Server Settings"
msgstr "Paramètres du serveur" msgstr "Paramètres du serveur"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Nom du service" msgstr "Nom du service"
@ -3063,9 +3009,6 @@ msgstr "Trier"
msgid "Source" msgid "Source"
msgstr "Source" msgstr "Source"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Indique le répertoire auquel le périphérique est rattaché" msgstr "Indique le répertoire auquel le périphérique est rattaché"
@ -3379,11 +3322,6 @@ msgstr ""
"address of your computer to reach the device again, depending on your " "address of your computer to reach the device again, depending on your "
"settings." "settings."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3551,15 +3489,6 @@ msgstr "Interface du tunnel"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Puissance d'émission" msgstr "Puissance d'émission"
@ -3740,12 +3669,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Classe de fournisseur à envoyer dans les requêtes DHCP" msgstr "Classe de fournisseur à envoyer dans les requêtes DHCP"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Vérifier" msgstr "Vérifier"
@ -3777,10 +3700,6 @@ msgstr ""
"Le chiffrage WPA nécessite l'installation du paquet wpa_supplicant (en mode " "Le chiffrage WPA nécessite l'installation du paquet wpa_supplicant (en mode "
"client) ou hostapd (en mode Point d'accès ou Ad-hoc)." "client) ou hostapd (en mode Point d'accès ou Ad-hoc)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "En attente de l'application des changements..." msgstr "En attente de l'application des changements..."
@ -3804,12 +3723,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3951,9 +3864,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "fichier de résolution local" msgstr "fichier de résolution local"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -4029,6 +3939,12 @@ msgstr "oui"
msgid "« Back" msgid "« Back"
msgstr "« Retour" msgstr "« Retour"
#~ msgid "IPv4 WAN Status"
#~ msgstr "État IPv4 du WAN"
#~ msgid "IPv6 WAN Status"
#~ msgstr "État IPv6 du WAN"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Appliquer" #~ msgstr "Appliquer"

View file

@ -163,9 +163,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -203,9 +200,6 @@ msgstr "מס' התקן של ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
#, fuzzy #, fuzzy
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "מרכז גישות" msgstr "מרכז גישות"
@ -316,11 +310,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -407,6 +396,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -421,6 +413,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "תחנות קשורות" msgstr "תחנות קשורות"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -511,9 +506,6 @@ msgstr "פורטה כתובת לא תקינה"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -690,9 +682,6 @@ msgstr "מחובר"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "מגבלת חיבורים" msgstr "מגבלת חיבורים"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "חיבורים" msgstr "חיבורים"
@ -830,9 +819,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1355,9 +1341,6 @@ msgstr ""
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1413,7 +1396,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1464,15 +1447,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2038,9 +2018,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "שם" msgstr "שם"
@ -2212,12 +2189,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2679,9 +2650,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2764,9 +2732,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2790,14 +2755,6 @@ msgstr "הרץ בדיקת מערכת קבצים"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2851,17 +2808,6 @@ msgstr ""
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2957,9 +2903,6 @@ msgstr "מיין"
msgid "Source" msgid "Source"
msgstr "מקור" msgstr "מקור"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3233,11 +3176,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3382,15 +3320,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "עוצמת שידור" msgstr "עוצמת שידור"
@ -3563,12 +3492,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3598,10 +3521,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3625,12 +3544,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3766,9 +3679,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "" msgstr ""
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""

View file

@ -170,9 +170,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -209,9 +206,6 @@ msgstr "ATM eszközszám"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Elérési központ" msgstr "Elérési központ"
@ -322,11 +316,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -411,6 +400,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -425,6 +417,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Kapcsolódó kliensek" msgstr "Kapcsolódó kliensek"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -515,9 +510,6 @@ msgstr "Hibás címet adott meg!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -708,9 +700,6 @@ msgstr "Kapcsolódva"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Kapcsolati korlát" msgstr "Kapcsolati korlát"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Kapcsolatok" msgstr "Kapcsolatok"
@ -848,9 +837,6 @@ msgstr "Alapértelmezett átjáró"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Alapértelmezett állapot" msgstr "Alapértelmezett állapot"
@ -1391,9 +1377,6 @@ msgstr "Befejezés"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1453,8 +1436,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 tűzfal" msgstr "IPv4 tűzfal"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4 WAN állapot" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 cím" msgstr "IPv4 cím"
@ -1504,15 +1487,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6 WAN állapot" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6 cím" msgstr "IPv6 cím"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2107,9 +2087,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Kijelölt NTP kiszolgálók" msgstr "Kijelölt NTP kiszolgálók"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Név" msgstr "Név"
@ -2286,12 +2263,6 @@ msgstr "Beállítás eltávolítva"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2769,9 +2740,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2855,9 +2823,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2883,14 +2848,6 @@ msgstr "Fájlrendszer ellenőrzés futtatása"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2946,17 +2903,6 @@ msgstr "Kliensek szétválasztása"
msgid "Server Settings" msgid "Server Settings"
msgstr "Kiszolgáló beállításai" msgstr "Kiszolgáló beállításai"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Szolgáltatás neve" msgstr "Szolgáltatás neve"
@ -3053,9 +2999,6 @@ msgstr "Sorbarendezés"
msgid "Source" msgid "Source"
msgstr "Forrás" msgstr "Forrás"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Megadja az eszköz csatlakozási könyvtárát." msgstr "Megadja az eszköz csatlakozási könyvtárát."
@ -3368,11 +3311,6 @@ msgstr ""
"eléréséhez a beállításaitól függően szükséges lehet a számítógépe IP-címének " "eléréséhez a beállításaitól függően szükséges lehet a számítógépe IP-címének "
"megújítása." "megújítása."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3539,15 +3477,6 @@ msgstr "Tunnel interfész"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Adóteljesítmény" msgstr "Adóteljesítmény"
@ -3727,12 +3656,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "DHCP kérés során küldendő 'Vendor Class'" msgstr "DHCP kérés során küldendő 'Vendor Class'"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Ellenőrzés" msgstr "Ellenőrzés"
@ -3764,10 +3687,6 @@ msgstr ""
"WPA titkosításhoz kliens módnál 'wpa_supplicant', hozzáférési pont illetve " "WPA titkosításhoz kliens módnál 'wpa_supplicant', hozzáférési pont illetve "
"ad-hoc módnál 'hostapd' telepítése szükséges." "ad-hoc módnál 'hostapd' telepítése szükséges."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Várakozás a változtatások alkalmazására..." msgstr "Várakozás a változtatások alkalmazására..."
@ -3791,12 +3710,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3940,9 +3853,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "helyi <abbr title=\"Domain Name System\">DNS</abbr> fájl" msgstr "helyi <abbr title=\"Domain Name System\">DNS</abbr> fájl"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -4018,6 +3928,12 @@ msgstr "igen"
msgid "« Back" msgid "« Back"
msgstr "« Vissza" msgstr "« Vissza"
#~ msgid "IPv4 WAN Status"
#~ msgstr "IPv4 WAN állapot"
#~ msgid "IPv6 WAN Status"
#~ msgstr "IPv6 WAN állapot"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Alkalmaz" #~ msgstr "Alkalmaz"

View file

@ -177,9 +177,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -216,9 +213,6 @@ msgstr "Numero dispositivo ATM "
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Accesso Concentratore" msgstr "Accesso Concentratore"
@ -331,11 +325,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -420,6 +409,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -434,6 +426,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Dispositivi Wi-Fi connessi" msgstr "Dispositivi Wi-Fi connessi"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -524,9 +519,6 @@ msgstr "E' stato specificato un indirizzo errato!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -713,9 +705,6 @@ msgstr "Connesso"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Limite connessioni" msgstr "Limite connessioni"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Connessioni" msgstr "Connessioni"
@ -853,9 +842,6 @@ msgstr "Gateway predefinito"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Stato Predefinito" msgstr "Stato Predefinito"
@ -1395,9 +1381,6 @@ msgstr "Hangup"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1458,8 +1441,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 Firewall" msgstr "IPv4 Firewall"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Stato WAN IPv4" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Indirizzi IPv4" msgstr "Indirizzi IPv4"
@ -1509,15 +1492,12 @@ msgstr "Impostazioni IPv6"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Stato WAN IPv6" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Indirizzi IPv6" msgstr "Indirizzi IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2107,9 +2087,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidati server NTP" msgstr "Candidati server NTP"
msgid "NTP sync time-out"
msgstr "Sincronizzazione NTP scaduta"
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
@ -2286,12 +2263,6 @@ msgstr "Opzione cancellata"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2662,13 +2633,15 @@ msgid ""
"Really shut down network?\\nYou might lose access to this device if you are " "Really shut down network?\\nYou might lose access to this device if you are "
"connected via this interface." "connected via this interface."
msgstr "" msgstr ""
"Vuoi davvero spegnere questa interfaccia \"%s\" ?\\nPotresti perdere " "Vuoi davvero spegnere questa interfaccia?\\nPotresti perdere l'accesso a "
"l'accesso a questo router se stai usando questa interfaccia." "questo router se sei connesso usando questa interfaccia."
msgid "" msgid ""
"Really shutdown interface \"%s\" ?\\nYou might lose access to this device if " "Really shutdown interface \"%s\" ?\\nYou might lose access to this device if "
"you are connected via this interface." "you are connected via this interface."
msgstr "" msgstr ""
"Vuoi davvero spegnere questa interfaccia \"%s\" ?\\nPotresti perdere "
"l'accesso a questo router se stai usando questa interfaccia."
msgid "Really switch protocol?" msgid "Really switch protocol?"
msgstr "Cambiare veramente il protocollo?" msgstr "Cambiare veramente il protocollo?"
@ -2757,9 +2730,6 @@ msgstr "Richiede indirizzo-IPv6"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "Richiede prefisso-IPv6 di lunghezza" msgstr "Richiede prefisso-IPv6 di lunghezza"
msgid "Require TLS"
msgstr "Richiede TLS"
msgid "Required" msgid "Required"
msgstr "Richiesto" msgstr "Richiesto"
@ -2842,9 +2812,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2870,14 +2837,6 @@ msgstr "Esegui controllo del filesystem"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2931,17 +2890,6 @@ msgstr "Isola utenti"
msgid "Server Settings" msgid "Server Settings"
msgstr "Impostazioni Server" msgstr "Impostazioni Server"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -3038,9 +2986,6 @@ msgstr "Ordina"
msgid "Source" msgid "Source"
msgstr "Origine" msgstr "Origine"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Specifica la cartella a cui è collegato il dispositivo in" msgstr "Specifica la cartella a cui è collegato il dispositivo in"
@ -3338,11 +3283,6 @@ msgstr ""
"address of your computer to reach the device again, depending on your " "address of your computer to reach the device again, depending on your "
"settings." "settings."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3496,15 +3436,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3686,12 +3617,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP" msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Verifica" msgstr "Verifica"
@ -3723,12 +3648,6 @@ msgstr ""
"La crittografia WPA richiede wpa_supplicant (per la modalità client) o " "La crittografia WPA richiede wpa_supplicant (per la modalità client) o "
"hostapd (per AP e modalità ad hoc) per essere installato." "hostapd (per AP e modalità ad hoc) per essere installato."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
"Attendi sincro NTP quei dati secondi, immetti 0 per disabilitare l'attesa "
"(opzionale)"
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "In attesa delle modifiche da applicare ..." msgstr "In attesa delle modifiche da applicare ..."
@ -3752,12 +3671,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3902,9 +3815,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "File <abbr title=\"Sistema Nome Dominio\">DNS</abbr> locale" msgstr "File <abbr title=\"Sistema Nome Dominio\">DNS</abbr> locale"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3980,99 +3890,8 @@ msgstr "Sì"
msgid "« Back" msgid "« Back"
msgstr "« Indietro" msgstr "« Indietro"
#~ msgid "Apply" #~ msgid "IPv4 WAN Status"
#~ msgstr "Applica" #~ msgstr "Stato WAN IPv4"
#~ msgid "Applying changes" #~ msgid "IPv6 WAN Status"
#~ msgstr "Applica modifiche" #~ msgstr "Stato WAN IPv6"
#~ msgid "Configuration applied."
#~ msgstr "Configurazione salvata."
#~ msgid "Save &#38; Apply"
#~ msgstr "Salva &#38; Applica"
#~ msgid "There are no pending changes to apply!"
#~ msgstr "Non ci sono cambiamenti pendenti da applicare!"
#~ msgid "Action"
#~ msgstr "Azione"
#~ msgid "Buttons"
#~ msgstr "Pulsanti"
#~ msgid "Handler"
#~ msgstr "Gestore"
#~ msgid "Maximum hold time"
#~ msgstr "Tempo massimo di attesa"
#~ msgid "Minimum hold time"
#~ msgstr "Velocità minima"
#~ msgid "Specifies the button state to handle"
#~ msgstr "Specifica lo stato del pulsante da gestire"
#~ msgid "Leasetime"
#~ msgstr "Tempo di contratto"
#, fuzzy
#~ msgid "automatic"
#~ msgstr "statico"
#~ msgid "AR Support"
#~ msgstr "Supporto AR"
#~ msgid "Atheros 802.11%s Wireless Controller"
#~ msgstr "Dispositivo Wireless Atheros 802.11%s"
#~ msgid "Background Scan"
#~ msgstr "Scansione in background"
#~ msgid "Compression"
#~ msgstr "Compressione"
#~ msgid "Disable HW-Beacon timer"
#~ msgstr "Disabilita Timer Beacon HW"
#~ msgid "Do not send probe responses"
#~ msgstr "Disabilita Probe-Responses"
#~ msgid "Fast Frames"
#~ msgstr "Frame veloci"
#~ msgid "Maximum Rate"
#~ msgstr "Velocità massima"
#~ msgid "Minimum Rate"
#~ msgstr "Velocità minima"
#~ msgid "Multicast Rate"
#~ msgstr "Velocità multicast"
#~ msgid "Separate WDS"
#~ msgstr "WDS separati"
#~ msgid "Static WDS"
#~ msgstr "WDS statico"
#~ msgid "Turbo Mode"
#~ msgstr "Modalità turbo"
#~ msgid "XR Support"
#~ msgstr "Supporto XR"
#~ msgid "An additional network will be created if you leave this unchecked."
#~ msgstr "Sarà creata una rete aggiuntiva se lasci questo senza spunta."
#~ msgid "Join Network: Settings"
#~ msgstr "Aggiunta Rete: Impostazioni"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Port %d"
#~ msgstr "Porta %d"
#~ msgid "VLAN Interface"
#~ msgstr "Interfaccia VLAN"

View file

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n" "POT-Creation-Date: 2009-06-10 03:40+0200\n"
"PO-Revision-Date: 2018-05-21 00:47+0900\n" "PO-Revision-Date: 2018-06-01 02:42+0900\n"
"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n"
"Language: ja\n" "Language: ja\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -175,9 +175,6 @@ msgstr "A43C + J43 + A43 + V43"
msgid "ADSL" msgid "ADSL"
msgstr "ADSL" msgstr "ADSL"
msgid "AICCU (SIXXS)"
msgstr "AICCU (SIXXS)"
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "ANSI T1.413" msgstr "ANSI T1.413"
@ -211,9 +208,6 @@ msgstr "ATMデバイス番号"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Access Concentrator" msgstr "Access Concentrator"
@ -321,11 +315,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "許可されるIP" msgstr "許可されるIP"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "常にデフォルト ルーターとして通知する" msgstr "常にデフォルト ルーターとして通知する"
@ -412,6 +401,9 @@ msgstr "適用リクエストはステータス <code>%h</code> により失敗
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "チェックなしの適用" msgstr "チェックなしの適用"
msgid "Architecture"
msgstr "アーキテクチャ"
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -426,6 +418,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "認証済み端末" msgstr "認証済み端末"
msgid "Associations"
msgstr "アソシエーション数"
msgid "Auth Group" msgid "Auth Group"
msgstr "認証グループ" msgstr "認証グループ"
@ -516,9 +511,6 @@ msgstr "無効なアドレスです!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -594,7 +586,7 @@ msgid "Changes applied."
msgstr "変更が適用されました。" msgstr "変更が適用されました。"
msgid "Changes have been reverted." msgid "Changes have been reverted."
msgstr "" msgstr "変更は取り消されました。"
msgid "Changes the administrator password for accessing the device" msgid "Changes the administrator password for accessing the device"
msgstr "デバイスの管理者パスワードを変更します" msgstr "デバイスの管理者パスワードを変更します"
@ -716,9 +708,6 @@ msgstr "接続中"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "接続制限" msgstr "接続制限"
msgid "Connection to server fails when TLS cannot be used"
msgstr "TLSが使用できないとき、サーバーへの接続は失敗します。"
msgid "Connections" msgid "Connections"
msgstr "ネットワーク接続" msgstr "ネットワーク接続"
@ -727,8 +716,8 @@ msgid ""
"changes. You might need to reconnect if you modified network related " "changes. You might need to reconnect if you modified network related "
"settings such as the IP address or wireless security credentials." "settings such as the IP address or wireless security credentials."
msgstr "" msgstr ""
"設定の変更を適用後、デバイスへのアクセスを回復できませんでした。もし IP アドレスや" "設定の変更を適用後、デバイスへのアクセスを回復できませんでした。もし IP アド"
"無線のセキュリティ認証情報などのネットワーク関連の設定を変更した場合、" "レスや無線のセキュリティ認証情報などのネットワーク関連の設定を変更した場合、"
"再接続が必要かもしれません。" "再接続が必要かもしれません。"
msgid "Country" msgid "Country"
@ -863,9 +852,6 @@ msgstr "デフォルト ゲートウェイ"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "デフォルトは ステートレス + ステートフル です。" msgstr "デフォルトは ステートレス + ステートフル です。"
msgid "Default route"
msgstr "デフォルト ルート"
msgid "Default state" msgid "Default state"
msgstr "標準状態" msgstr "標準状態"
@ -1409,9 +1395,6 @@ msgstr "再起動"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr "ハートビート"
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1469,8 +1452,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 ファイアウォール" msgstr "IPv4 ファイアウォール"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4 WAN ステータス" msgstr "IPv4 アップストリーム"
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 アドレス" msgstr "IPv4 アドレス"
@ -1520,15 +1503,12 @@ msgstr "IPv6 設定"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "IPv6 ULA-プレフィクス" msgstr "IPv6 ULA-プレフィクス"
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6 WAN ステータス" msgstr "IPv6 アップストリーム"
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6 アドレス" msgstr "IPv6 アドレス"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2123,9 +2103,6 @@ msgstr "NT ドメイン"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTPサーバー候補" msgstr "NTPサーバー候補"
msgid "NTP sync time-out"
msgstr "NTP 同期タイムアウト"
msgid "Name" msgid "Name"
msgstr "名前" msgstr "名前"
@ -2305,12 +2282,6 @@ msgstr "削除されるオプション"
msgid "Optional" msgid "Optional"
msgstr "オプション" msgstr "オプション"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2793,9 +2764,6 @@ msgstr "IPv6-アドレスのリクエスト"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "リクエストするIPv6-プレフィクス長" msgstr "リクエストするIPv6-プレフィクス長"
msgid "Require TLS"
msgstr "TLSが必要"
msgid "Required" msgid "Required"
msgstr "必須" msgstr "必須"
@ -2880,9 +2848,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "ルート タイプ" msgstr "ルート タイプ"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "ルーター アドバタイズメント-サービス" msgstr "ルーター アドバタイズメント-サービス"
@ -2908,14 +2873,6 @@ msgstr "ファイルシステムチェックを行う"
msgid "SHA256" msgid "SHA256"
msgstr "SHA256" msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "SNR" msgstr "SNR"
@ -2971,17 +2928,6 @@ msgstr "クライアントの分離"
msgid "Server Settings" msgid "Server Settings"
msgstr "サーバー設定" msgstr "サーバー設定"
msgid "Server password"
msgstr "サーバー パスワード"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr "サーバー ユーザー名"
msgid "Service Name" msgid "Service Name"
msgstr "サービス名" msgstr "サービス名"
@ -3077,9 +3023,6 @@ msgstr "ソート"
msgid "Source" msgid "Source"
msgstr "送信元" msgstr "送信元"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "デバイスが接続するディレクトリを設定します" msgstr "デバイスが接続するディレクトリを設定します"
@ -3295,8 +3238,8 @@ msgstr ""
"す。これは、安全上の理由によりロールバックされる設定に起因するものです。それ" "す。これは、安全上の理由によりロールバックされる設定に起因するものです。それ"
"でも設定の変更が正しいと思う場合は、チェックなしの変更の適用を行ってくださ" "でも設定の変更が正しいと思う場合は、チェックなしの変更の適用を行ってくださ"
"い。もしくは、再度適用を試行する前にこの警告を除去して設定内容の編集を行う" "い。もしくは、再度適用を試行する前にこの警告を除去して設定内容の編集を行う"
"か、現在動作している設定状況を維持するために未適用の変更を取り消してくだ" "か、現在動作している設定状況を維持するために未適用の変更を取り消してくだ"
"い。" "い。"
msgid "" msgid ""
"The device file of the memory or partition (<abbr title=\"for example\">e.g." "The device file of the memory or partition (<abbr title=\"for example\">e.g."
@ -3387,11 +3330,6 @@ msgstr ""
"わる可能性があるため、再接続時にあなたのコンピュータのIPアドレスを変更しなけ" "わる可能性があるため、再接続時にあなたのコンピュータのIPアドレスを変更しなけ"
"ればならない場合があります。" "ればならない場合があります。"
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3560,15 +3498,6 @@ msgstr "トンネルインターフェース"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "トンネルリンク" msgstr "トンネルリンク"
msgid "Tunnel broker protocol"
msgstr "トンネルブローカー プロトコル"
msgid "Tunnel setup server"
msgstr "トンネルセットアップ サーバー"
msgid "Tunnel type"
msgstr "トンネルタイプ"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "送信電力" msgstr "送信電力"
@ -3749,12 +3678,6 @@ msgstr "ベンダー"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "DHCPリクエスト送信時のベンダークラスを設定" msgstr "DHCPリクエスト送信時のベンダークラスを設定"
msgid "Verbose"
msgstr "詳細"
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "確認" msgstr "確認"
@ -3787,10 +3710,6 @@ msgstr ""
"hostapd (アクセスポイント及びアドホック) がインストールされている必要がありま" "hostapd (アクセスポイント及びアドホック) がインストールされている必要がありま"
"す。" "す。"
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "変更を適用中です..." msgstr "変更を適用中です..."
@ -3814,12 +3733,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "帯域幅" msgstr "帯域幅"
@ -3964,9 +3877,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "ローカル <abbr title=\"Domain Name System\">DNS</abbr>ファイル" msgstr "ローカル <abbr title=\"Domain Name System\">DNS</abbr>ファイル"
msgid "minimum 1280, maximum 1480"
msgstr "最小値 1280、最大値 1480"
msgid "minutes" msgid "minutes"
msgstr "分" msgstr "分"

View file

@ -168,9 +168,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -204,9 +201,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -311,11 +305,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -400,6 +389,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -414,6 +406,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "연결된 station 들" msgstr "연결된 station 들"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -504,9 +499,6 @@ msgstr ""
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -693,9 +685,6 @@ msgstr "연결 시간"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "" msgstr ""
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "연결" msgstr "연결"
@ -835,9 +824,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "기본 상태" msgstr "기본 상태"
@ -1368,9 +1354,6 @@ msgstr ""
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1429,8 +1412,8 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 방화벽" msgstr "IPv4 방화벽"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4 WAN 상태" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 주소" msgstr "IPv4 주소"
@ -1480,13 +1463,10 @@ msgstr "IPv6 설정"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6 WAN 상태"
msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
@ -2056,9 +2036,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP 서버 목록" msgstr "NTP 서버 목록"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "이름" msgstr "이름"
@ -2236,12 +2213,6 @@ msgstr "삭제된 option"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2706,9 +2677,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2791,9 +2759,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2819,14 +2784,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2880,17 +2837,6 @@ msgstr ""
msgid "Server Settings" msgid "Server Settings"
msgstr "서버 설정" msgstr "서버 설정"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2983,9 +2929,6 @@ msgstr "순서"
msgid "Source" msgid "Source"
msgstr "" msgstr ""
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3268,11 +3211,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3426,15 +3364,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3615,12 +3544,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "DHCP 요청시 전송할 Vendor Class" msgstr "DHCP 요청시 전송할 Vendor Class"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3650,10 +3573,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "변경 사항이 적용되기를 기다리는 중입니다..." msgstr "변경 사항이 적용되기를 기다리는 중입니다..."
@ -3677,12 +3596,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3824,9 +3737,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파일" msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파일"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3902,6 +3812,12 @@ msgstr ""
msgid "« Back" msgid "« Back"
msgstr "" msgstr ""
#~ msgid "IPv4 WAN Status"
#~ msgstr "IPv4 WAN 상태"
#~ msgid "IPv6 WAN Status"
#~ msgstr "IPv6 WAN 상태"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "적용" #~ msgstr "적용"

View file

@ -165,9 +165,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -201,9 +198,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -306,11 +300,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -395,6 +384,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -409,6 +401,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Associated Stesen" msgstr "Associated Stesen"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -499,9 +494,6 @@ msgstr ""
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -675,9 +667,6 @@ msgstr ""
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Sambungan Batas" msgstr "Sambungan Batas"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
@ -813,9 +802,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1340,9 +1326,6 @@ msgstr "Menutup"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1400,7 +1383,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1451,15 +1434,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2036,9 +2016,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nama" msgstr "Nama"
@ -2215,12 +2192,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2680,9 +2651,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2765,9 +2733,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2793,14 +2758,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2854,17 +2811,6 @@ msgstr "Pisahkan Pelanggan"
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2957,9 +2903,6 @@ msgstr ""
msgid "Source" msgid "Source"
msgstr "Sumber" msgstr "Sumber"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3241,11 +3184,6 @@ msgstr ""
"anda perlu mengemas kini alamat komputer anda untuk mencapai peranti lagi, " "anda perlu mengemas kini alamat komputer anda untuk mencapai peranti lagi, "
"bergantung pada tetapan anda." "bergantung pada tetapan anda."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3397,15 +3335,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3578,12 +3507,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3615,10 +3538,6 @@ msgstr ""
"WPA-Enkripsi memerlukan pemohan wpa (untuk mod pelanggan) atau hostapd " "WPA-Enkripsi memerlukan pemohan wpa (untuk mod pelanggan) atau hostapd "
"(untuk AP dan mod ad-hoc) yang akan dipasangkan." "(untuk AP dan mod ad-hoc) yang akan dipasangkan."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3642,12 +3561,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3783,9 +3696,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "Fail DNS tempatan" msgstr "Fail DNS tempatan"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""

View file

@ -167,9 +167,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -210,9 +207,6 @@ msgstr "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> enhetsnummer"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Tilgangskonsentrator" msgstr "Tilgangskonsentrator"
@ -315,11 +309,6 @@ msgstr "Tillat oppstrøms svar i 127.0.0.0/8 nettet, f.eks for RBL tjenester"
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -404,6 +393,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -418,6 +410,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Tilkoblede Klienter" msgstr "Tilkoblede Klienter"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -508,9 +503,6 @@ msgstr "Ugyldig adresse oppgitt!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -697,9 +689,6 @@ msgstr "Tilkoblet"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Tilkoblingsgrense (antall)" msgstr "Tilkoblingsgrense (antall)"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Tilkoblinger" msgstr "Tilkoblinger"
@ -837,9 +826,6 @@ msgstr "Standard gateway"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Standard tilstand" msgstr "Standard tilstand"
@ -1377,9 +1363,6 @@ msgstr "Slå av"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1439,8 +1422,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 Brannmur" msgstr "IPv4 Brannmur"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4 WAN Status" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 adresse" msgstr "IPv4 adresse"
@ -1490,15 +1473,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6 WAN Status" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6 adresse" msgstr "IPv6 adresse"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2081,9 +2061,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP server kandidater" msgstr "NTP server kandidater"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Navn" msgstr "Navn"
@ -2261,12 +2238,6 @@ msgstr "Innstilling fjernet"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2743,9 +2714,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2828,9 +2796,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2856,14 +2821,6 @@ msgstr "Kjør filsystem sjekk"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2919,17 +2876,6 @@ msgstr "Separerte Klienter"
msgid "Server Settings" msgid "Server Settings"
msgstr "Server Innstillinger" msgstr "Server Innstillinger"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Tjeneste navn" msgstr "Tjeneste navn"
@ -3026,9 +2972,6 @@ msgstr "Sortering"
msgid "Source" msgid "Source"
msgstr "Kilde" msgstr "Kilde"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Hvor lagrings enheten blir tilsluttet filsystemet (f.eks. /mnt/sda1)" msgstr "Hvor lagrings enheten blir tilsluttet filsystemet (f.eks. /mnt/sda1)"
@ -3337,11 +3280,6 @@ msgstr ""
"du prøver å koble til igjen. Det kan være nødvendig å fornye ip-adressen til " "du prøver å koble til igjen. Det kan være nødvendig å fornye ip-adressen til "
"datamaskinen din for å nå enheten på nytt. (avhengig av innstillingene dine)" "datamaskinen din for å nå enheten på nytt. (avhengig av innstillingene dine)"
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3504,15 +3442,6 @@ msgstr "Tunnel grensesnitt"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Tx-Styrke" msgstr "Tx-Styrke"
@ -3692,12 +3621,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Leverandør klasse som sendes ved DHCP spørring" msgstr "Leverandør klasse som sendes ved DHCP spørring"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Bekreft" msgstr "Bekreft"
@ -3729,10 +3652,6 @@ msgstr ""
"WPA-Kryptering krever at wpa_supplicant (for klient-modus) eller hostapd " "WPA-Kryptering krever at wpa_supplicant (for klient-modus) eller hostapd "
"(for AP og ad-hoc-modus) er installert." "(for AP og ad-hoc-modus) er installert."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Venter på at endringer utføres..." msgstr "Venter på at endringer utføres..."
@ -3756,12 +3675,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3905,9 +3818,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "lokal <abbr title=\"Domain Navn System\">DNS</abbr>-fil" msgstr "lokal <abbr title=\"Domain Navn System\">DNS</abbr>-fil"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3983,6 +3893,12 @@ msgstr "ja"
msgid "« Back" msgid "« Back"
msgstr "« Tilbake" msgstr "« Tilbake"
#~ msgid "IPv4 WAN Status"
#~ msgstr "IPv4 WAN Status"
#~ msgid "IPv6 WAN Status"
#~ msgstr "IPv6 WAN Status"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Bruk" #~ msgstr "Bruk"

View file

@ -162,8 +162,8 @@ msgid ""
"<br/>Note: you need to manually restart the cron service if the crontab file " "<br/>Note: you need to manually restart the cron service if the crontab file "
"was empty before editing." "was empty before editing."
msgstr "" msgstr ""
"<br/>Uwaga: musisz ręcznie zrestartować usługę cron, jeśli plik crontab " "<br/>Uwaga: musisz ręcznie zrestartować usługę cron, jeśli plik crontab był "
"był pusty przed edycją." "pusty przed edycją."
msgid "A43C + J43 + A43" msgid "A43C + J43 + A43"
msgstr "" msgstr ""
@ -174,9 +174,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "ADSL" msgstr "ADSL"
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -205,9 +202,9 @@ msgid ""
"Linux network interfaces which can be used in conjunction with DHCP or PPP " "Linux network interfaces which can be used in conjunction with DHCP or PPP "
"to dial into the provider network." "to dial into the provider network."
msgstr "" msgstr ""
"Mosty ATM eksponują enkapsulowaną sieć Ethernet w połączeniach AAL5 jako wirtualne " "Mosty ATM eksponują enkapsulowaną sieć Ethernet w połączeniach AAL5 jako "
"interfejsy sieciowe systemu Linux, które mogą być używane w połączeniu z protokołem " "wirtualne interfejsy sieciowe systemu Linux, które mogą być używane w "
"DHCP lub PPP w celu polączenia się z siecią dostawcy." "połączeniu z protokołem DHCP lub PPP w celu polączenia się z siecią dostawcy."
msgid "ATM device number" msgid "ATM device number"
msgstr "Numer urządzenia ATM" msgstr "Numer urządzenia ATM"
@ -215,9 +212,6 @@ msgstr "Numer urządzenia ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
# co to takiego? # co to takiego?
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Koncentrator dostępowy ATM" msgstr "Koncentrator dostępowy ATM"
@ -290,7 +284,8 @@ msgstr "Alarm"
msgid "" msgid ""
"Allocate IP addresses sequentially, starting from the lowest available " "Allocate IP addresses sequentially, starting from the lowest available "
"address" "address"
msgstr "Przydziel sekwencyjnie adresy IP, zaczynając od najmniejszego dostępnego" msgstr ""
"Przydziel sekwencyjnie adresy IP, zaczynając od najmniejszego dostępnego"
msgid "Allocate IP sequentially" msgid "Allocate IP sequentially"
msgstr "Przydzielaj adresy IP po kolei" msgstr "Przydzielaj adresy IP po kolei"
@ -311,7 +306,8 @@ msgid "Allow localhost"
msgstr "Pozwól tylko sobie (localhost)" msgstr "Pozwól tylko sobie (localhost)"
msgid "Allow remote hosts to connect to local SSH forwarded ports" msgid "Allow remote hosts to connect to local SSH forwarded ports"
msgstr "Zezwalaj zdalnym hostom na łączenie się z lokalnie przekazywanymi portami SSH" msgstr ""
"Zezwalaj zdalnym hostom na łączenie się z lokalnie przekazywanymi portami SSH"
msgid "Allow root logins with password" msgid "Allow root logins with password"
msgstr "Zezwól na logowanie roota przy pomocy hasła" msgstr "Zezwól na logowanie roota przy pomocy hasła"
@ -327,11 +323,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "Dozwolone adresy IP" msgstr "Dozwolone adresy IP"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "Zawsze rozgłaszaj domyślny router" msgstr "Zawsze rozgłaszaj domyślny router"
@ -410,11 +401,14 @@ msgstr "Ustawienia anteny"
msgid "Any zone" msgid "Any zone"
msgstr "Dowolna strefa" msgstr "Dowolna strefa"
msgid "Apply" msgid "Apply request failed with status <code>%h</code>"
msgstr "Zatwierdź" msgstr ""
msgid "Applying changes" msgid "Apply unchecked"
msgstr "Wprowadzam zmiany" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
@ -430,6 +424,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Połączone stacje" msgstr "Połączone stacje"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -521,9 +518,6 @@ msgstr "Wprowadzono zły adres"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -596,12 +590,20 @@ msgstr "Zmiany"
msgid "Changes applied." msgid "Changes applied."
msgstr "Zmiany zostały zastosowane." msgstr "Zmiany zostały zastosowane."
msgid "Changes have been reverted."
msgstr ""
msgid "Changes the administrator password for accessing the device" msgid "Changes the administrator password for accessing the device"
msgstr "Zmienia hasło administratora" msgstr "Zmienia hasło administratora"
msgid "Channel" msgid "Channel"
msgstr "Kanał" msgstr "Kanał"
msgid ""
"Channel %d is not available in the %s regulatory domain and has been auto-"
"adjusted to %d."
msgstr ""
msgid "Check" msgid "Check"
msgstr "Sprawdź" msgstr "Sprawdź"
@ -678,17 +680,24 @@ msgid ""
"workaround might cause interoperability issues and reduced robustness of key " "workaround might cause interoperability issues and reduced robustness of key "
"negotiation especially in environments with heavy traffic load." "negotiation especially in environments with heavy traffic load."
msgstr "" msgstr ""
"Komplikuje atak ponownej instalacji klucza po stronie klienta, wyłączając retransmisję ramek klucza EAPOL, które są używane do instalowania kluczy. To obejście może powodować problemy z interoperacyjnością i zmniejszoną odporność kluczowych negocjacji, szczególnie w środowiskach o dużym natężeniu ruchu." "Komplikuje atak ponownej instalacji klucza po stronie klienta, wyłączając "
"retransmisję ramek klucza EAPOL, które są używane do instalowania kluczy. To "
"obejście może powodować problemy z interoperacyjnością i zmniejszoną "
"odporność kluczowych negocjacji, szczególnie w środowiskach o dużym "
"natężeniu ruchu."
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguracja" msgstr "Konfiguracja"
msgid "Configuration applied."
msgstr "Konfiguracja została zastosowana."
msgid "Configuration files will be kept." msgid "Configuration files will be kept."
msgstr "Pliki konfiguracyjne zostaną zachowane." msgstr "Pliki konfiguracyjne zostaną zachowane."
msgid "Configuration has been applied."
msgstr ""
msgid "Configuration has been rolled back!"
msgstr ""
msgid "Confirmation" msgid "Confirmation"
msgstr "Potwierdzenie" msgstr "Potwierdzenie"
@ -701,12 +710,15 @@ msgstr "Połączony"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Limit połączeń" msgstr "Limit połączeń"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Połączenia" msgstr "Połączenia"
msgid ""
"Could not regain access to the device after applying the configuration "
"changes. You might need to reconnect if you modified network related "
"settings such as the IP address or wireless security credentials."
msgstr ""
msgid "Country" msgid "Country"
msgstr "Kraj" msgstr "Kraj"
@ -836,9 +848,6 @@ msgstr "Brama domyślna"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Stan domyślny" msgstr "Stan domyślny"
@ -881,6 +890,9 @@ msgstr "Urządzenie jest uruchamiane ponownie ..."
msgid "Device unreachable" msgid "Device unreachable"
msgstr "Urządzenie nieosiągalne" msgstr "Urządzenie nieosiągalne"
msgid "Device unreachable!"
msgstr ""
msgid "Diagnostics" msgid "Diagnostics"
msgstr "Diagnostyka" msgstr "Diagnostyka"
@ -915,6 +927,9 @@ msgstr "Wyłączone (domyślnie)"
msgid "Discard upstream RFC1918 responses" msgid "Discard upstream RFC1918 responses"
msgstr "Odrzuć wychodzące odpowiedzi RFC1918" msgstr "Odrzuć wychodzące odpowiedzi RFC1918"
msgid "Dismiss"
msgstr ""
msgid "Displaying only packages containing" msgid "Displaying only packages containing"
msgstr "Pokazuję tylko paczki zawierające" msgstr "Pokazuję tylko paczki zawierające"
@ -1037,7 +1052,9 @@ msgstr "Włącz"
msgid "" msgid ""
"Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> " "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
"snooping" "snooping"
msgstr "Włącz nasłuchiwanie <abbr title=\"Internet Group Management Protocol\">IGMP</abbr>" msgstr ""
"Włącz nasłuchiwanie <abbr title=\"Internet Group Management Protocol\">IGMP</"
"abbr>"
msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgstr "Włącz <abbr title=\"Spanning Tree Protocol\">STP</abbr>" msgstr "Włącz <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
@ -1102,8 +1119,9 @@ msgstr "Włącz nasłuchiwanie IGMP na tym moście"
msgid "" msgid ""
"Enables fast roaming among access points that belong to the same Mobility " "Enables fast roaming among access points that belong to the same Mobility "
"Domain" "Domain"
msgstr "Aktywuje szybki roaming pomiędzy punktami dostępowymi, które należą " msgstr ""
"do tej samej domeny" "Aktywuje szybki roaming pomiędzy punktami dostępowymi, które należą do tej "
"samej domeny"
msgid "Enables the Spanning Tree Protocol on this bridge" msgid "Enables the Spanning Tree Protocol on this bridge"
msgstr "" msgstr ""
@ -1182,6 +1200,9 @@ msgstr ""
msgid "FT protocol" msgid "FT protocol"
msgstr "" msgstr ""
msgid "Failed to confirm apply within %ds, waiting for rollback…"
msgstr ""
msgid "File" msgid "File"
msgstr "Plik" msgstr "Plik"
@ -1378,9 +1399,6 @@ msgstr "Rozłącz"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1443,8 +1461,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Firewall IPv4" msgstr "Firewall IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Status IPv4 WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Adres IPv4" msgstr "Adres IPv4"
@ -1494,15 +1512,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Status WAN IPv6" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Adres IPv6" msgstr "Adres IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -1623,7 +1638,8 @@ msgid "Install"
msgstr "Instaluj" msgstr "Instaluj"
msgid "Install iputils-traceroute6 for IPv6 traceroute" msgid "Install iputils-traceroute6 for IPv6 traceroute"
msgstr "Zainstaluj iputils-traceroute6 w celu skorzystania z traceroute dla iPv6" msgstr ""
"Zainstaluj iputils-traceroute6 w celu skorzystania z traceroute dla iPv6"
msgid "Install package %q" msgid "Install package %q"
msgstr "Instaluj pakiet %q" msgstr "Instaluj pakiet %q"
@ -1958,8 +1974,8 @@ msgid ""
"Make sure to clone the root filesystem using something like the commands " "Make sure to clone the root filesystem using something like the commands "
"below:" "below:"
msgstr "" msgstr ""
"Upewnij się, że klonujesz główny system plików, używając czegoś podobnego " "Upewnij się, że klonujesz główny system plików, używając czegoś podobnego do "
"do poleceń poniżej:" "poleceń poniżej:"
msgid "Manual" msgid "Manual"
msgstr "" msgstr ""
@ -2096,9 +2112,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Lista serwerów NTP" msgstr "Lista serwerów NTP"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nazwa" msgstr "Nazwa"
@ -2222,6 +2235,9 @@ msgstr ""
msgid "Obfuscated Password" msgid "Obfuscated Password"
msgstr "" msgstr ""
msgid "Obtain IPv6-Address"
msgstr ""
msgid "Off-State Delay" msgid "Off-State Delay"
msgstr "Zwłoka wyłączenia" msgstr "Zwłoka wyłączenia"
@ -2272,12 +2288,6 @@ msgstr "Usunięto wartość"
msgid "Optional" msgid "Optional"
msgstr "Opcjonalny" msgstr "Opcjonalny"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2755,9 +2765,6 @@ msgstr "Zażądaj adresu IPv6"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr "Wymagaj TLS"
msgid "Required" msgid "Required"
msgstr "Wymagany" msgstr "Wymagany"
@ -2816,6 +2823,15 @@ msgstr "Odsłoń/Ukryj hasło"
msgid "Revert" msgid "Revert"
msgstr "Przywróć" msgstr "Przywróć"
msgid "Revert changes"
msgstr ""
msgid "Revert request failed with status <code>%h</code>"
msgstr ""
msgid "Reverting configuration…"
msgstr ""
msgid "Root" msgid "Root"
msgstr "Root" msgstr "Root"
@ -2831,9 +2847,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2860,14 +2873,6 @@ msgstr "Sprawdź czy system plików nie zawiera błędów"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "SNR" msgstr "SNR"
@ -2895,9 +2900,6 @@ msgstr "Zapisz"
msgid "Save & Apply" msgid "Save & Apply"
msgstr "Zapisz i zastosuj" msgstr "Zapisz i zastosuj"
msgid "Save &#38; Apply"
msgstr "Zapisz i zastosuj"
msgid "Scan" msgid "Scan"
msgstr "Skanuj" msgstr "Skanuj"
@ -2927,17 +2929,6 @@ msgstr "Rozdziel klientów"
msgid "Server Settings" msgid "Server Settings"
msgstr "Ustawienia serwera" msgstr "Ustawienia serwera"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Nazwa serwisu" msgstr "Nazwa serwisu"
@ -2951,8 +2942,8 @@ msgid ""
"Set interface properties regardless of the link carrier (If set, carrier " "Set interface properties regardless of the link carrier (If set, carrier "
"sense events do not invoke hotplug handlers)." "sense events do not invoke hotplug handlers)."
msgstr "" msgstr ""
"Ustaw właściwości interfejsu, niezależnie od operatora łącza (nie wpływa" "Ustaw właściwości interfejsu, niezależnie od operatora łącza (nie wpływa na "
" na programy operatora które ustanawiają połączenie)." "programy operatora które ustanawiają połączenie)."
#, fuzzy #, fuzzy
msgid "Set up Time Synchronization" msgid "Set up Time Synchronization"
@ -3036,9 +3027,6 @@ msgstr "Posortuj"
msgid "Source" msgid "Source"
msgstr "Źródło" msgstr "Źródło"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Podaje katalog do którego jest podłączone urządzenie" msgstr "Podaje katalog do którego jest podłączone urządzenie"
@ -3080,6 +3068,9 @@ msgstr "Uruchomienie"
msgid "Start priority" msgid "Start priority"
msgstr "Priorytet uruchomienia" msgstr "Priorytet uruchomienia"
msgid "Starting configuration apply…"
msgstr ""
msgid "Startup" msgid "Startup"
msgstr "Autostart" msgstr "Autostart"
@ -3246,6 +3237,16 @@ msgstr ""
msgid "The configuration file could not be loaded due to the following error:" msgid "The configuration file could not be loaded due to the following error:"
msgstr "" msgstr ""
msgid ""
"The device could not be reached within %d seconds after applying the pending "
"changes, which caused the configuration to be rolled back for safety "
"reasons. If you believe that the configuration changes are correct "
"nonetheless, perform an unchecked configuration apply. Alternatively, you "
"can dismiss this warning and edit changes before attempting to apply again, "
"or revert all pending changes to keep the currently working configuration "
"state."
msgstr ""
msgid "" msgid ""
"The device file of the memory or partition (<abbr title=\"for example\">e.g." "The device file of the memory or partition (<abbr title=\"for example\">e.g."
"</abbr> <code>/dev/sda1</code>)" "</abbr> <code>/dev/sda1</code>)"
@ -3273,9 +3274,6 @@ msgstr ""
"upewnić się, że został przesłany poprawnie.<br /> Wciśnij \"Wykonaj\" aby " "upewnić się, że został przesłany poprawnie.<br /> Wciśnij \"Wykonaj\" aby "
"kontynuować aktualizację." "kontynuować aktualizację."
msgid "The following changes have been committed"
msgstr "Następujące zmiany zostały zatwierdzone"
msgid "The following changes have been reverted" msgid "The following changes have been reverted"
msgstr "Następujące zmiany zostały odrzucone" msgstr "Następujące zmiany zostały odrzucone"
@ -3345,11 +3343,6 @@ msgstr ""
"ustawień może być konieczne odnowienie adresu Twojego komputera, aby dostać " "ustawień może być konieczne odnowienie adresu Twojego komputera, aby dostać "
"się do urządzenia." "się do urządzenia."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3360,8 +3353,8 @@ msgstr ""
msgid "There are no active leases." msgid "There are no active leases."
msgstr "Brak aktywnych dzierżaw." msgstr "Brak aktywnych dzierżaw."
msgid "There are no pending changes to apply!" msgid "There are no changes to apply."
msgstr "Brak oczekujących zmian do zastosowania!" msgstr ""
msgid "There are no pending changes to revert!" msgid "There are no pending changes to revert!"
msgstr "Brak oczekujących zmian do przywrócenia!" msgstr "Brak oczekujących zmian do przywrócenia!"
@ -3471,8 +3464,8 @@ msgid ""
"To restore configuration files, you can upload a previously generated backup " "To restore configuration files, you can upload a previously generated backup "
"archive here." "archive here."
msgstr "" msgstr ""
"Aby przywrócić pliki konfiguracyjne, możesz tutaj przesłać wcześniej utworzoną " "Aby przywrócić pliki konfiguracyjne, możesz tutaj przesłać wcześniej "
"kopię zapasową." "utworzoną kopię zapasową."
msgid "Tone" msgid "Tone"
msgstr "" msgstr ""
@ -3516,15 +3509,6 @@ msgstr "Interfejs tunelu"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr "Typ tunelu"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Moc nadawania" msgstr "Moc nadawania"
@ -3582,8 +3566,9 @@ msgid ""
"compatible firmware image)." "compatible firmware image)."
msgstr "" msgstr ""
"Prześlij tutaj obraz zgodny z funkcją sysupgrade, aby zastąpić aktualnie " "Prześlij tutaj obraz zgodny z funkcją sysupgrade, aby zastąpić aktualnie "
"działające opragramowanie. Zaznacz opcję \"Zachowaj ustawienia\", aby zachować " "działające opragramowanie. Zaznacz opcję \"Zachowaj ustawienia\", aby "
"bieżącą konfigurację (wymagany obraz zgodny z bieżącym opragramowaniem)." "zachować bieżącą konfigurację (wymagany obraz zgodny z bieżącym "
"opragramowaniem)."
msgid "Upload archive..." msgid "Upload archive..."
msgstr "Załaduj archiwum..." msgstr "Załaduj archiwum..."
@ -3705,12 +3690,6 @@ msgstr "Producent"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Klasa producenta do wysłania podczas żądania DHCP" msgstr "Klasa producenta do wysłania podczas żądania DHCP"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Zweryfikuj" msgstr "Zweryfikuj"
@ -3739,12 +3718,8 @@ msgid ""
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
"Kodowanie WPA wymaga zainstalowanych modułów wpa_supplicant (tryb " "Kodowanie WPA wymaga zainstalowanych modułów wpa_supplicant (tryb klienta) "
"klienta) lub hostapd (tryb AP lub ad-hoc)" "lub hostapd (tryb AP lub ad-hoc)"
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Trwa wprowadzenie zmian..." msgstr "Trwa wprowadzenie zmian..."
@ -3752,6 +3727,9 @@ msgstr "Trwa wprowadzenie zmian..."
msgid "Waiting for command to complete..." msgid "Waiting for command to complete..."
msgstr "Trwa wykonanie polecenia..." msgstr "Trwa wykonanie polecenia..."
msgid "Waiting for configuration to get applied… %ds"
msgstr ""
msgid "Waiting for device..." msgid "Waiting for device..."
msgstr "Oczekiwanie na urządzenie..." msgstr "Oczekiwanie na urządzenie..."
@ -3759,20 +3737,15 @@ msgid "Warning"
msgstr "Ostrzeżenie" msgstr "Ostrzeżenie"
msgid "Warning: There are unsaved changes that will get lost on reboot!" msgid "Warning: There are unsaved changes that will get lost on reboot!"
msgstr "Ostrzeżenie: Istnieją niezapisane zmiany, które zostaną utracone " msgstr ""
"po ponownym uruchomieniu urządzenia!" "Ostrzeżenie: Istnieją niezapisane zmiany, które zostaną utracone po ponownym "
"uruchomieniu urządzenia!"
msgid "" msgid ""
"When using a PSK, the PMK can be generated locally without inter AP " "When using a PSK, the PMK can be generated locally without inter AP "
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "Szerokość" msgstr "Szerokość"
@ -3839,9 +3812,9 @@ msgid ""
"upgrade it to at least version 7 or use another browser like Firefox, Opera " "upgrade it to at least version 7 or use another browser like Firefox, Opera "
"or Safari." "or Safari."
msgstr "" msgstr ""
"Twój Internet Explorer jest za stary, aby poprawnie wyświetlić tę stronę" "Twój Internet Explorer jest za stary, aby poprawnie wyświetlić tę stronę "
"zaktualizuj go do wersji co najmniej 7 lub użyj innej przeglądarki, takiej " "zaktualizuj go do wersji co najmniej 7 lub użyj innej przeglądarki, takiej "
"jak Firefox, Opera czy Safari". "jak Firefox, Opera czy Safari."
msgid "any" msgid "any"
msgstr "dowolny" msgstr "dowolny"
@ -3919,9 +3892,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "lokalny plik <abbr title=\"Domain Name System\">DNS</abbr>" msgstr "lokalny plik <abbr title=\"Domain Name System\">DNS</abbr>"
msgid "minimum 1280, maximum 1480"
msgstr "minimum 1280, maksimum 1480"
msgid "minutes" msgid "minutes"
msgstr "minuty" msgstr "minuty"
@ -3998,101 +3968,8 @@ msgstr "tak"
msgid "« Back" msgid "« Back"
msgstr "« Wróć" msgstr "« Wróć"
#~ msgid "Action" #~ msgid "IPv4 WAN Status"
#~ msgstr "Akcja" #~ msgstr "Status IPv4 WAN"
#~ msgid "Buttons" #~ msgid "IPv6 WAN Status"
#~ msgstr "Przyciski" #~ msgstr "Status WAN IPv6"
#~ msgid "Handler"
#~ msgstr "Uchwyt"
#~ msgid "Maximum hold time"
#~ msgstr "Maksymalny czas podtrzymania"
#~ msgid "Minimum hold time"
#~ msgstr "Minimalny czas podtrzymania"
#~ msgid "Path to executable which handles the button event"
#~ msgstr ""
#~ "Ścieżka do pliku wykonywalnego, który obsługuje zdarzenie dla danego "
#~ "przycisku"
#~ msgid "Specifies the button state to handle"
#~ msgstr "Określa zachowanie w zależności od stanu przycisku"
#~ msgid "This page allows the configuration of custom button actions"
#~ msgstr ""
#~ "Poniższa strona umożliwia konfigurację działania niestandardowych "
#~ "przycisków"
#~ msgid "Leasetime"
#~ msgstr "Czas dzierżawy"
# Wydaje mi się że brakuje litery R...
#~ msgid "AR Support"
#~ msgstr "Wsparcie dla ARP"
#~ msgid "Atheros 802.11%s Wireless Controller"
#~ msgstr "Bezprzewodowy kontroler Atheros 802.11%s"
#~ msgid "Background Scan"
#~ msgstr "Skanowanie w tle"
#~ msgid "Compression"
#~ msgstr "Kompresja"
#~ msgid "Disable HW-Beacon timer"
#~ msgstr "Wyłącz zegar HW-Beacon"
#~ msgid "Do not send probe responses"
#~ msgstr "Nie wysyłaj ramek probe response"
#~ msgid "Fast Frames"
#~ msgstr "Szybkie ramki (Fast Frames)"
#~ msgid "Maximum Rate"
#~ msgstr "Maksymalna Szybkość"
#~ msgid "Minimum Rate"
#~ msgstr "Minimalna Szybkość"
#~ msgid "Multicast Rate"
#~ msgstr "Szybkość Multicast`u"
#~ msgid "Outdoor Channels"
#~ msgstr "Kanały zewnętrzne"
#~ msgid "Regulatory Domain"
#~ msgstr "Domena regulacji"
#~ msgid "Separate WDS"
#~ msgstr "Rozdziel WDS"
#~ msgid "Static WDS"
#~ msgstr "Statyczny WDS"
#~ msgid "Turbo Mode"
#~ msgstr "Tryb Turbo"
#~ msgid "XR Support"
#~ msgstr "Wsparcie XR"
#~ msgid "An additional network will be created if you leave this unchecked."
#~ msgstr ""
#~ "Zostanie utworzona dodatkowa sieć jeśli zostawisz tą opcję niezaznaczoną."
#~ msgid "Join Network: Settings"
#~ msgstr "Przyłącz do sieci: Ustawienia"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Port %d"
#~ msgstr "Port %d"
#~ msgid "Port %d is untagged in multiple VLANs!"
#~ msgstr "Port %d jest nietagowany w wielu VLAN`ach!"
#~ msgid "VLAN Interface"
#~ msgstr "Interfejs VLAN"

View file

@ -185,11 +185,6 @@ msgstr ""
"<abbr title=\"Assymetrical Digital Subscriber Line/Linha Digital Assimétrica " "<abbr title=\"Assymetrical Digital Subscriber Line/Linha Digital Assimétrica "
"para Assinante\">ADSL</abbr>" "para Assinante\">ADSL</abbr>"
msgid "AICCU (SIXXS)"
msgstr ""
"<abbr title=\"Automatic IPv6 Connectivity Client Utility/Utilitário Cliente "
"de Conectividade IPv6 Automática\">AICCU (SIXXS)</abbr>"
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "ANSI T1.413" msgstr "ANSI T1.413"
@ -232,9 +227,6 @@ msgstr "Número do dispositivo ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "Identificador de" msgstr "Identificador de"
msgid "AYIYA"
msgstr "AYIYA"
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Concentrador de Acesso" msgstr "Concentrador de Acesso"
@ -348,13 +340,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "Endereços IP autorizados" msgstr "Endereços IP autorizados"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
"Veja também a <a href=\"https://www.sixxs.net/faq/connectivity/?"
"faq=comparison\">Comparação de Tunelamentos</a> em SIXXS"
msgid "Always announce default router" msgid "Always announce default router"
msgstr "Sempre anuncie o roteador padrão" msgstr "Sempre anuncie o roteador padrão"
@ -440,6 +425,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -458,6 +446,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Estações associadas" msgstr "Estações associadas"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "Grupo de Autenticação" msgstr "Grupo de Autenticação"
@ -552,9 +543,6 @@ msgstr "Endereço especificado está incorreto!"
msgid "Band" msgid "Band"
msgstr "Banda" msgstr "Banda"
msgid "Behind NAT"
msgstr "Atrás da NAT"
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -748,9 +736,6 @@ msgstr "Conectado"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Limite de conexão" msgstr "Limite de conexão"
msgid "Connection to server fails when TLS cannot be used"
msgstr "A conexão para este servidor falhará quando o TLS não puder ser usado"
msgid "Connections" msgid "Connections"
msgstr "Conexões" msgstr "Conexões"
@ -890,9 +875,6 @@ msgstr "Roteador Padrão"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "O padrão é sem estado + com estado" msgstr "O padrão é sem estado + com estado"
msgid "Default route"
msgstr "Rota padrão"
msgid "Default state" msgid "Default state"
msgstr "Estado padrão" msgstr "Estado padrão"
@ -1452,9 +1434,6 @@ msgstr ""
"Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</" "Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</"
"abbr>)" "abbr>)"
msgid "Heartbeat"
msgstr "Pulso de vida"
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1520,8 +1499,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Firewall para IPv4" msgstr "Firewall para IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Estado IPv4 da WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Endereço IPv4" msgstr "Endereço IPv4"
@ -1573,15 +1552,12 @@ msgstr ""
"Prefixo <abbr title=\"Unique Local Address/Endereço Local Único\">ULA</abbr> " "Prefixo <abbr title=\"Unique Local Address/Endereço Local Único\">ULA</abbr> "
"IPv6" "IPv6"
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Estado IPv6 da WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Endereço IPv6" msgstr "Endereço IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr "Endereços IPv6 delegados para o ponta local do túnel (opcional)"
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "Sugestão de atribuição IPv6" msgstr "Sugestão de atribuição IPv6"
@ -2205,9 +2181,6 @@ msgstr "Domínio NT"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP" msgstr "Candidatos a servidor NTP"
msgid "NTP sync time-out"
msgstr "Tempo limite da sincronia do NTP"
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
@ -2388,13 +2361,6 @@ msgstr "Opção removida"
msgid "Optional" msgid "Optional"
msgstr "Opcional" msgstr "Opcional"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
"Opcional, especifique para sobrescrever o servidor padrão (tic.sixxs.net)"
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr "Opcional, para usar quando a conta SIXXS tem mais de um túnel"
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2885,9 +2851,6 @@ msgstr "Solicita endereço IPv6"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "Solicita prefixo IPv6 de tamanho" msgstr "Solicita prefixo IPv6 de tamanho"
msgid "Require TLS"
msgstr "Requer TLS"
msgid "Required" msgid "Required"
msgstr "Necessário" msgstr "Necessário"
@ -2976,9 +2939,6 @@ msgstr "Roteie Andereços IP Autorizados"
msgid "Route type" msgid "Route type"
msgstr "Tipo de rota" msgstr "Tipo de rota"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr "Prefixo roteável IPv6 para interfaces internas"
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "Serviço de Anúncio de Roteador" msgstr "Serviço de Anúncio de Roteador"
@ -3005,16 +2965,6 @@ msgstr "Execute a verificação do sistema de arquivos "
msgid "SHA256" msgid "SHA256"
msgstr "SHA256" msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
"O SIXXS suporta somente TIC. Use o 6in4 para túneis estáticos usando o "
"protocolo IP 41 (RFC4213)"
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr "Identificador do SIXXS[/Identificador do Túnel]"
msgid "SNR" msgid "SNR"
msgstr "SNR" msgstr "SNR"
@ -3070,19 +3020,6 @@ msgstr "Isolar Clientes"
msgid "Server Settings" msgid "Server Settings"
msgstr "Configurações do Servidor" msgstr "Configurações do Servidor"
msgid "Server password"
msgstr "Senha do servidor"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
"Senha do servidor. Informe a senha para este túnel quando o nome do usuário "
"contiver o identificador do túnel"
msgid "Server username"
msgstr "Usuário do servidor"
msgid "Service Name" msgid "Service Name"
msgstr "Nome do Serviço" msgstr "Nome do Serviço"
@ -3180,9 +3117,6 @@ msgstr "Ordenar"
msgid "Source" msgid "Source"
msgstr "Origem" msgstr "Origem"
msgid "Source routing"
msgstr "Roteamento pela origem"
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Especifica o diretório que o dispositivo está conectado" msgstr "Especifica o diretório que o dispositivo está conectado"
@ -3505,13 +3439,6 @@ msgstr ""
"da sua configuração, pode ser necessário renovar o endereço do seu " "da sua configuração, pode ser necessário renovar o endereço do seu "
"computador para poder conectar novamente ao roteador." "computador para poder conectar novamente ao roteador."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
"O final do túnel está atrás de um NAT. Por padrão será desabilitado e "
"somente se aplica a AYIYA"
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3683,15 +3610,6 @@ msgstr "Interface de Tunelamento"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "Enlace do túnel" msgstr "Enlace do túnel"
msgid "Tunnel broker protocol"
msgstr "Protocolo do agente do túnel"
msgid "Tunnel setup server"
msgstr "Servidor de configuração do túnel"
msgid "Tunnel type"
msgstr "Tipo de túnel"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Potência de transmissão" msgstr "Potência de transmissão"
@ -3878,12 +3796,6 @@ msgstr "Fabricante"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Classe do fabricante para enviar quando requisitar o DHCP" msgstr "Classe do fabricante para enviar quando requisitar o DHCP"
msgid "Verbose"
msgstr "Detalhado"
msgid "Verbose logging by aiccu daemon"
msgstr "Habilite registros detalhados do serviço AICCU"
msgid "Verify" msgid "Verify"
msgstr "Verificar" msgstr "Verificar"
@ -3915,12 +3827,6 @@ msgstr ""
"A cifragem WPA requer a instalação do wpa_supplicant (para modo cliente) ou " "A cifragem WPA requer a instalação do wpa_supplicant (para modo cliente) ou "
"do hostapd (para modo AP ou ad-hoc)." "do hostapd (para modo AP ou ad-hoc)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
"Espere esta quantidade de segundos pela sincronia do NTP. Definindo como 0 "
"desabilita a espera (opcional)"
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Esperando a aplicação das mudanças..." msgstr "Esperando a aplicação das mudanças..."
@ -3944,12 +3850,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr "Se deve criar uma rota padrão IPv6 sobre o túnel"
msgid "Whether to route only packets from delegated prefixes"
msgstr "Se deve rotear somente pacotes de prefixos delegados"
msgid "Width" msgid "Width"
msgstr "Largura" msgstr "Largura"
@ -4098,9 +3998,6 @@ msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "" msgstr ""
"Arquivo local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" "Arquivo local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>"
msgid "minimum 1280, maximum 1480"
msgstr "mínimo 1280, máximo 1480"
msgid "minutes" msgid "minutes"
msgstr "minutos" msgstr "minutos"
@ -4177,134 +4074,8 @@ msgstr "sim"
msgid "« Back" msgid "« Back"
msgstr "« Voltar" msgstr "« Voltar"
#~ msgid "Apply" #~ msgid "IPv4 WAN Status"
#~ msgstr "Aplicar" #~ msgstr "Estado IPv4 da WAN"
#~ msgid "Applying changes" #~ msgid "IPv6 WAN Status"
#~ msgstr "Aplicar as alterações" #~ msgstr "Estado IPv6 da WAN"
#~ msgid "Configuration applied."
#~ msgstr "Configuração aplicada."
#~ msgid "Save &#38; Apply"
#~ msgstr "Save &#38; Aplicar"
#~ msgid "The following changes have been committed"
#~ msgstr "As seguintes mudanças foram aplicadas"
#~ msgid "There are no pending changes to apply!"
#~ msgstr "Não existem modificações pendentes para aplicar!"
#~ msgid "Action"
#~ msgstr "Ação"
#~ msgid "Buttons"
#~ msgstr "Botões"
# Não sei que contexto isto está sendo usado
#~ msgid "Handler"
#~ msgstr "Responsável"
# Desconheço o uso
#~ msgid "Maximum hold time"
#~ msgstr "Tempo máximo de espera"
#~ msgid "Minimum hold time"
#~ msgstr "Tempo mínimo de espera"
#~ msgid "Path to executable which handles the button event"
#~ msgstr "Caminho para o executável que trata o evento do botão"
#~ msgid "Specifies the button state to handle"
#~ msgstr "Especifica o estado do botão para ser tratado"
#~ msgid "This page allows the configuration of custom button actions"
#~ msgstr ""
#~ "Esta página permite a configuração de ações personalizadas para os botões"
#~ msgid "Leasetime"
#~ msgstr "Tempo de atribuição do DHCP"
#~ msgid "Optional."
#~ msgstr "Opcional."
#~ msgid "navigation Navigation"
#~ msgstr "navegação Navegação"
#~ msgid "skiplink1 Skip to navigation"
#~ msgstr "skiplink1 Pular para a navegação"
#~ msgid "skiplink2 Skip to content"
#~ msgstr "skiplink2 Pular para o conteúdo"
#~ msgid "AuthGroup"
#~ msgstr "Grupo de Autenticação"
#~ msgid "automatic"
#~ msgstr "automático"
#~ msgid "AR Support"
#~ msgstr "Suporte AR"
#~ msgid "Atheros 802.11%s Wireless Controller"
#~ msgstr "Controlador Wireless Atheros 802.11%s"
#~ msgid "Background Scan"
#~ msgstr "Busca em Segundo Plano"
#~ msgid "Compression"
#~ msgstr "Compressão"
#~ msgid "Disable HW-Beacon timer"
#~ msgstr "Desativar temporizador de Beacon de Hardware"
#~ msgid "Do not send probe responses"
#~ msgstr "Não enviar respostas de exames"
#~ msgid "Fast Frames"
#~ msgstr "Quadros Rápidos"
#~ msgid "Maximum Rate"
#~ msgstr "Taxa Máxima"
#~ msgid "Minimum Rate"
#~ msgstr "Taxa Mínima"
#~ msgid "Multicast Rate"
#~ msgstr "Taxa de Multicast"
#~ msgid "Outdoor Channels"
#~ msgstr "Canais para externo"
#~ msgid "Regulatory Domain"
#~ msgstr "Domínio Regulatório"
#~ msgid "Separate WDS"
#~ msgstr "Separar WDS"
#~ msgid "Static WDS"
#~ msgstr "WDS Estático"
#~ msgid "Turbo Mode"
#~ msgstr "Modo Turbo"
#~ msgid "XR Support"
#~ msgstr "Suporte a XR"
#~ msgid "An additional network will be created if you leave this unchecked."
#~ msgstr "Uma rede adicional será criada se você deixar isto desmarcado."
#~ msgid "Join Network: Settings"
#~ msgstr "Conectar à Rede: Configurações"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Port %d"
#~ msgstr "Porta %d"
#~ msgid "Port %d is untagged in multiple VLANs!"
#~ msgstr "Porta %d está sem etiqueta para mútliplas VLANs!"
#~ msgid "VLAN Interface"
#~ msgstr "Interface VLAN"

View file

@ -177,9 +177,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -216,9 +213,6 @@ msgstr "Número de Dispositivo ATM"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Concentrador de Acesso" msgstr "Concentrador de Acesso"
@ -328,11 +322,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -417,6 +406,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -431,6 +423,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Estações Associadas" msgstr "Estações Associadas"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -521,9 +516,6 @@ msgstr "Endereço mal especificado!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -710,9 +702,6 @@ msgstr "Ligado"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Limite de Ligações" msgstr "Limite de Ligações"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Ligações" msgstr "Ligações"
@ -850,9 +839,6 @@ msgstr "Gateway predefinido"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Estado predefinido" msgstr "Estado predefinido"
@ -1395,9 +1381,6 @@ msgstr "Suspender"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1460,8 +1443,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Firewall IPv4" msgstr "Firewall IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Estado WAN IPv4" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Endereço IPv4" msgstr "Endereço IPv4"
@ -1511,15 +1494,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Estado WAN IPv6" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Endereço IPv6" msgstr "Endereço IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2105,9 +2085,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Candidatos a servidor NTP" msgstr "Candidatos a servidor NTP"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
@ -2285,12 +2262,6 @@ msgstr "Opção removida"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2762,9 +2733,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2847,9 +2815,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2876,14 +2841,6 @@ msgstr "Correr uma verificação do sistema de ficheiros"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2937,17 +2894,6 @@ msgstr "Isolar Clientes"
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Nome do Serviço" msgstr "Nome do Serviço"
@ -3041,9 +2987,6 @@ msgstr "Ordenar"
msgid "Source" msgid "Source"
msgstr "Origem" msgstr "Origem"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3344,11 +3287,6 @@ msgstr ""
"da sua configuração, ode ser necessário renovar o endereço do seu computador " "da sua configuração, ode ser necessário renovar o endereço do seu computador "
"para poder ligar novamente ao router." "para poder ligar novamente ao router."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3505,15 +3443,6 @@ msgstr "Interface de Túnel"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Potência de Tx" msgstr "Potência de Tx"
@ -3686,12 +3615,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Verificar" msgstr "Verificar"
@ -3723,10 +3646,6 @@ msgstr ""
"A encriptação-WPA necessita do wpa_supplicant (para modo cliente) ou do " "A encriptação-WPA necessita do wpa_supplicant (para modo cliente) ou do "
"hostapd (para modo AP ou ah-hoc) esteja instalado." "hostapd (para modo AP ou ah-hoc) esteja instalado."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "A aguardar que as mudanças sejam aplicadas..." msgstr "A aguardar que as mudanças sejam aplicadas..."
@ -3750,12 +3669,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3901,9 +3814,6 @@ msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "" msgstr ""
"Ficheiro local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" "Ficheiro local de <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3979,6 +3889,12 @@ msgstr "sim"
msgid "« Back" msgid "« Back"
msgstr "« Voltar" msgstr "« Voltar"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Estado WAN IPv4"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Estado WAN IPv6"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Aplicar" #~ msgstr "Aplicar"

View file

@ -168,9 +168,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -207,9 +204,6 @@ msgstr "ATM numar echipament"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Concentrator de Access " msgstr "Concentrator de Access "
@ -314,11 +308,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -403,6 +392,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -417,6 +409,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Statiile asociate" msgstr "Statiile asociate"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -507,9 +502,6 @@ msgstr "Adresa specificata gresit !"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -685,9 +677,6 @@ msgstr "Conectat"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Limita de conexiune" msgstr "Limita de conexiune"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Conexiuni" msgstr "Conexiuni"
@ -823,9 +812,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Stare implicita" msgstr "Stare implicita"
@ -1347,9 +1333,6 @@ msgstr ""
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1407,8 +1390,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Firewall IPv4" msgstr "Firewall IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Statusul IPv4 pe WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Adresa IPv4" msgstr "Adresa IPv4"
@ -1458,15 +1441,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Statusul IPv6 pe WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Adresa IPv6" msgstr "Adresa IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2035,9 +2015,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Nume" msgstr "Nume"
@ -2209,12 +2186,6 @@ msgstr "Optiunea eliminata"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2675,9 +2646,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2760,9 +2728,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2786,14 +2751,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2847,17 +2804,6 @@ msgstr ""
msgid "Server Settings" msgid "Server Settings"
msgstr "Setarile serverului" msgstr "Setarile serverului"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Nume serviciu" msgstr "Nume serviciu"
@ -2951,9 +2897,6 @@ msgstr ""
msgid "Source" msgid "Source"
msgstr "Sursa" msgstr "Sursa"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3223,11 +3166,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3373,15 +3311,6 @@ msgstr "Interfata de tunel"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Puterea TX" msgstr "Puterea TX"
@ -3554,12 +3483,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3591,10 +3514,6 @@ msgstr ""
"Criptarea WPA necesita wpa_supplicant (pentru modul client) sau hostapd " "Criptarea WPA necesita wpa_supplicant (pentru modul client) sau hostapd "
"(pentru modul AP sau ad-hoc) instalate." "(pentru modul AP sau ad-hoc) instalate."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3618,12 +3537,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3759,9 +3672,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "" msgstr ""
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3837,6 +3747,12 @@ msgstr "da"
msgid "« Back" msgid "« Back"
msgstr "« Inapoi" msgstr "« Inapoi"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Statusul IPv4 pe WAN"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Statusul IPv6 pe WAN"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Aplica" #~ msgstr "Aplica"

View file

@ -177,9 +177,6 @@ msgstr "A43C + J43 + A43 + V43"
msgid "ADSL" msgid "ADSL"
msgstr "ADSL" msgstr "ADSL"
msgid "AICCU (SIXXS)"
msgstr "AICCU (SIXXS)"
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "ANSI T1.413" msgstr "ANSI T1.413"
@ -216,9 +213,6 @@ msgstr "ATM номер устройства"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "ATU-C System Vendor ID" msgstr "ATU-C System Vendor ID"
msgid "AYIYA"
msgstr "AYIYA"
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Концентратор доступа" msgstr "Концентратор доступа"
@ -330,13 +324,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "Разрешенные IP-адреса" msgstr "Разрешенные IP-адреса"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
"Также смотрите <a href=\"https://www.sixxs.net/faq/connectivity/?"
"faq=comparison\">Tunneling Comparison</a> on SIXXS"
msgid "Always announce default router" msgid "Always announce default router"
msgstr "Объявлять всегда, как дефолтный маршрутизатор" msgstr "Объявлять всегда, как дефолтный маршрутизатор"
@ -423,6 +410,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -441,6 +431,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Подключенные клиенты" msgstr "Подключенные клиенты"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "Группа аутентификации" msgstr "Группа аутентификации"
@ -537,9 +530,6 @@ msgstr "Указан неправильный адрес!"
msgid "Band" msgid "Band"
msgstr "Диапазон" msgstr "Диапазон"
msgid "Behind NAT"
msgstr "За NAT-ом"
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -739,9 +729,6 @@ msgstr "Подключен"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Ограничение соединений" msgstr "Ограничение соединений"
msgid "Connection to server fails when TLS cannot be used"
msgstr "Связь с сервером прерывается, когда TLS не может быть использован"
msgid "Connections" msgid "Connections"
msgstr "Соединения" msgstr "Соединения"
@ -881,9 +868,6 @@ msgstr "Шлюз по умолчанию"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "Значение по умолчанию - 'stateless + stateful'." msgstr "Значение по умолчанию - 'stateless + stateful'."
msgid "Default route"
msgstr "Маршрут по умолчанию"
msgid "Default state" msgid "Default state"
msgstr "Начальное состояние" msgstr "Начальное состояние"
@ -1431,9 +1415,6 @@ msgstr "Перезапустить"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "Ошибки кода ошибки заголовка (HEC)" msgstr "Ошибки кода ошибки заголовка (HEC)"
msgid "Heartbeat"
msgstr "Heartbeat"
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1493,8 +1474,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Межсетевой экран IPv4" msgstr "Межсетевой экран IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Состояние IPv4 WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4-адрес" msgstr "IPv4-адрес"
@ -1544,16 +1525,12 @@ msgstr "IPv6 Настройки"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "IPv6 ULA-Prefix" msgstr "IPv6 ULA-Prefix"
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Состояние IPv6 WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6-адрес" msgstr "IPv6-адрес"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
"IPv6-адрес, делегированный локальной конечной точке туннеля (необязательно)."
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "IPv6 подсказка присвоения" msgstr "IPv6 подсказка присвоения"
@ -2163,9 +2140,6 @@ msgstr "NT домен"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Список NTP-серверов" msgstr "Список NTP-серверов"
msgid "NTP sync time-out"
msgstr "NTP синхронизация времени ожидания"
msgid "Name" msgid "Name"
msgstr "Имя" msgstr "Имя"
@ -2343,16 +2317,6 @@ msgstr "Опция удалена"
msgid "Optional" msgid "Optional"
msgstr "Необязательно" msgstr "Необязательно"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
"Необязательно. Укажите, чтобы переопределить дефолтный сервер (tic.sixxs."
"net)."
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
"Необязательно. Используется, когда учетная запись SIXXS имеет более одного "
"туннеля."
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2844,9 +2808,6 @@ msgstr "Запрос IPv6 адреса"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "Запрос IPv6 префикс длины" msgstr "Запрос IPv6 префикс длины"
msgid "Require TLS"
msgstr "Требовать TLS"
msgid "Required" msgid "Required"
msgstr "Требовать" msgstr "Требовать"
@ -2937,9 +2898,6 @@ msgstr "Маршрут разрешенный для IP адресов"
msgid "Route type" msgid "Route type"
msgstr "Тип маршрута" msgstr "Тип маршрута"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr "Префикс маршрутизации IPv6 для интерфейсов внутренней сети"
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "Доступные<br />режимы работы" msgstr "Доступные<br />режимы работы"
@ -2965,16 +2923,6 @@ msgstr "Проверить"
msgid "SHA256" msgid "SHA256"
msgstr "SHA256" msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
"SIXXS поддерживает только TIC, для статических туннелей с использованием IP-"
"протокола 41 (RFC4213) используется вместо 6in4."
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr "SIXXS-управление[/Туннель-ID]"
msgid "SNR" msgid "SNR"
msgstr "SNR" msgstr "SNR"
@ -3030,19 +2978,6 @@ msgstr "Разделять клиентов"
msgid "Server Settings" msgid "Server Settings"
msgstr "Настройки сервера" msgstr "Настройки сервера"
msgid "Server password"
msgstr "Пароль доступа к серверу"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
"Пароль сервера. Введите пароль из тоннеля, когда имя пользователя содержит "
"ID туннеля."
msgid "Server username"
msgstr "Логин доступа к серверу"
msgid "Service Name" msgid "Service Name"
msgstr "Имя службы" msgstr "Имя службы"
@ -3139,9 +3074,6 @@ msgstr "Сортировка"
msgid "Source" msgid "Source"
msgstr "Источник" msgstr "Источник"
msgid "Source routing"
msgstr "маршрутизация от источника"
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Папка, к которой монтируется раздел устройства." msgstr "Папка, к которой монтируется раздел устройства."
@ -3457,13 +3389,6 @@ msgstr ""
"потребуется обновить адрес компьютера, чтобы снова подключится к устройству, " "потребуется обновить адрес компьютера, чтобы снова подключится к устройству, "
"в зависимости от настроек." "в зависимости от настроек."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
"Конечная точка туннеля находится за NAT, по умолчанию отключена и "
"применяется только к AYIYA."
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3634,15 +3559,6 @@ msgstr "Интерфейс туннеля"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "Ссылка на туннель" msgstr "Ссылка на туннель"
msgid "Tunnel broker protocol"
msgstr "Протокол посредника туннеля"
msgid "Tunnel setup server"
msgstr "Сервер настройки туннеля"
msgid "Tunnel type"
msgstr "Тип туннеля"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Мощность передатчика" msgstr "Мощность передатчика"
@ -3828,12 +3744,6 @@ msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
"Класс производителя (Vendor class), который отправлять при DHCP-запросах" "Класс производителя (Vendor class), который отправлять при DHCP-запросах"
msgid "Verbose"
msgstr "Verbose"
msgid "Verbose logging by aiccu daemon"
msgstr "Verbose ведение журнала демоном aiccu"
msgid "Verify" msgid "Verify"
msgstr "Проверить" msgstr "Проверить"
@ -3865,12 +3775,6 @@ msgstr ""
"Необходимо установить wpa_supplicant (режим клиента) или hostapd (режим " "Необходимо установить wpa_supplicant (режим клиента) или hostapd (режим "
"точки доступа или ad-hoc) для поддержки шифрования WPA." "точки доступа или ad-hoc) для поддержки шифрования WPA."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
"Задать время ожидания синхронизации NTP, установка значения - '0', отключает "
"ожидание (необязательно)."
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Ожидание применения изменений..." msgstr "Ожидание применения изменений..."
@ -3896,12 +3800,6 @@ msgid ""
"communications" "communications"
msgstr "При использовании PSK, PMK может быть создан локально, без AP в связи." msgstr "При использовании PSK, PMK может быть создан локально, без AP в связи."
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr "Создание маршрута по умолчанию IPv6 через туннель."
msgid "Whether to route only packets from delegated prefixes"
msgstr "Маршрутизация только пакетов из делегированных префиксов."
msgid "Width" msgid "Width"
msgstr "Ширина" msgstr "Ширина"
@ -4048,9 +3946,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "Локальный <abbr title=\"Служба доменных имён\">DNS</abbr>-файл." msgstr "Локальный <abbr title=\"Служба доменных имён\">DNS</abbr>-файл."
msgid "minimum 1280, maximum 1480"
msgstr "минимум 1280, максимум 1480"
msgid "minutes" msgid "minutes"
msgstr "минут(ы)" msgstr "минут(ы)"
@ -4126,20 +4021,8 @@ msgstr "да"
msgid "« Back" msgid "« Back"
msgstr "« Назад" msgstr "« Назад"
#~ msgid "Apply" #~ msgid "IPv4 WAN Status"
#~ msgstr "Принять" #~ msgstr "Состояние IPv4 WAN"
#~ msgid "Applying changes" #~ msgid "IPv6 WAN Status"
#~ msgstr "Применение изменений" #~ msgstr "Состояние IPv6 WAN"
#~ msgid "Configuration applied."
#~ msgstr "Изменение настроек config файлов."
#~ msgid "Save &#38; Apply"
#~ msgstr "Сохранить и применить"
#~ msgid "The following changes have been committed"
#~ msgstr "Ваши настройки были применены."
#~ msgid "There are no pending changes to apply!"
#~ msgstr "Нет изменений, которые можно применить!"

View file

@ -159,9 +159,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -195,9 +192,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -300,11 +294,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -389,6 +378,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -403,6 +395,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "" msgstr ""
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -493,9 +488,6 @@ msgstr ""
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -668,9 +660,6 @@ msgstr ""
msgid "Connection Limit" msgid "Connection Limit"
msgstr "" msgstr ""
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
@ -806,9 +795,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1327,9 +1313,6 @@ msgstr ""
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1385,7 +1368,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1436,15 +1419,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2010,9 +1990,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -2184,12 +2161,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2648,9 +2619,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2733,9 +2701,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2759,14 +2724,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2820,17 +2777,6 @@ msgstr ""
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2923,9 +2869,6 @@ msgstr ""
msgid "Source" msgid "Source"
msgstr "" msgstr ""
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3195,11 +3138,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3343,15 +3281,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3524,12 +3453,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3559,10 +3482,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3586,12 +3505,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3727,9 +3640,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "" msgstr ""
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""

View file

@ -167,9 +167,6 @@ msgstr "A43C + J43 + A43 + V43"
msgid "ADSL" msgid "ADSL"
msgstr "ADSL" msgstr "ADSL"
msgid "AICCU (SIXXS)"
msgstr "AICCU (SIXXS)"
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "ANSI T1.413" msgstr "ANSI T1.413"
@ -203,9 +200,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr "AYIYA"
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -311,11 +305,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "Tillåtna IP-adresser" msgstr "Tillåtna IP-adresser"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -400,6 +389,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -414,6 +406,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Associerade stationer" msgstr "Associerade stationer"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "Autentiseringsgrupp" msgstr "Autentiseringsgrupp"
@ -504,9 +499,6 @@ msgstr "Fel adress angiven!"
msgid "Band" msgid "Band"
msgstr "Band" msgstr "Band"
msgid "Behind NAT"
msgstr "Bakom NAT"
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -682,9 +674,6 @@ msgstr "Ansluten"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Anslutningsgräns" msgstr "Anslutningsgräns"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Anslutningar" msgstr "Anslutningar"
@ -820,9 +809,6 @@ msgstr "Standard gateway"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr "Standardrutt"
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1347,9 +1333,6 @@ msgstr "Lägg på"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr "Hjärtslag"
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1405,7 +1388,7 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4-brandvägg" msgstr "IPv4-brandvägg"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1456,15 +1439,12 @@ msgstr "IPv6-inställningar"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6-adress" msgstr "IPv6-adress"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2031,9 +2011,6 @@ msgstr "NT-domän"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP-serverkandidater" msgstr "NTP-serverkandidater"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Namn" msgstr "Namn"
@ -2205,12 +2182,6 @@ msgstr "Alternativet togs bort"
msgid "Optional" msgid "Optional"
msgstr "Valfri" msgstr "Valfri"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2671,9 +2642,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr "Kräv TLS"
msgid "Required" msgid "Required"
msgstr "Krävs!" msgstr "Krävs!"
@ -2756,9 +2724,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "Typ av rutt" msgstr "Typ av rutt"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2782,14 +2747,6 @@ msgstr "Kör filsystemskontrollen"
msgid "SHA256" msgid "SHA256"
msgstr "SHA256" msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "SNR" msgstr "SNR"
@ -2843,17 +2800,6 @@ msgstr "Separera klienter"
msgid "Server Settings" msgid "Server Settings"
msgstr "Inställningar för server" msgstr "Inställningar för server"
msgid "Server password"
msgstr "Lösenordet för servern"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr "Användarnamnet för servern"
msgid "Service Name" msgid "Service Name"
msgstr "Namn på tjänst" msgstr "Namn på tjänst"
@ -2946,9 +2892,6 @@ msgstr "Sortera"
msgid "Source" msgid "Source"
msgstr "Källa" msgstr "Källa"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3218,11 +3161,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3370,15 +3308,6 @@ msgstr "Tunnelgränssnitt"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "Tunnel-länk" msgstr "Tunnel-länk"
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr "Tunnel-typ"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3551,12 +3480,6 @@ msgstr "Tillverkare"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr "Utförlig"
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Verkställ" msgstr "Verkställ"
@ -3586,10 +3509,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Väntar på att ändringarna ska tillämpas..." msgstr "Väntar på att ändringarna ska tillämpas..."
@ -3614,12 +3533,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "Bredd" msgstr "Bredd"
@ -3760,9 +3673,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "lokal <abbr title=\"Domain Name System\">DNS</abbr>-fil" msgstr "lokal <abbr title=\"Domain Name System\">DNS</abbr>-fil"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "minuter" msgstr "minuter"
@ -3837,27 +3747,3 @@ msgstr "ja"
msgid "« Back" msgid "« Back"
msgstr "« Bakåt" msgstr "« Bakåt"
#~ msgid "Apply"
#~ msgstr "Verkställ"
#~ msgid "Applying changes"
#~ msgstr "Verkställer ändringar"
#~ msgid "Configuration applied."
#~ msgstr "Konfigurationen tillämpades"
#~ msgid "Save &#38; Apply"
#~ msgstr "Spara &#38; Verkställ"
#~ msgid "The following changes have been committed"
#~ msgstr "Följande ändringar har skickats in"
#~ msgid "There are no pending changes to apply!"
#~ msgstr "Det finns inga pendlande ändringar att verkställa!"
#~ msgid "Action"
#~ msgstr "Åtgärd"
#~ msgid "Buttons"
#~ msgstr "Knappar"

View file

@ -152,9 +152,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -188,9 +185,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -293,11 +287,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -382,6 +371,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -396,6 +388,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "" msgstr ""
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -486,9 +481,6 @@ msgstr ""
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -661,9 +653,6 @@ msgstr ""
msgid "Connection Limit" msgid "Connection Limit"
msgstr "" msgstr ""
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
@ -799,9 +788,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1320,9 +1306,6 @@ msgstr ""
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1378,7 +1361,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1429,15 +1412,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2003,9 +1983,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -2177,12 +2154,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2641,9 +2612,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2726,9 +2694,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2752,14 +2717,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2813,17 +2770,6 @@ msgstr ""
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2916,9 +2862,6 @@ msgstr ""
msgid "Source" msgid "Source"
msgstr "" msgstr ""
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3188,11 +3131,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3336,15 +3274,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3517,12 +3446,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3552,10 +3475,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3579,12 +3498,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3720,9 +3633,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "" msgstr ""
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""

View file

@ -39,13 +39,13 @@ msgid "-- custom --"
msgstr "-- özel --" msgstr "-- özel --"
msgid "-- match by device --" msgid "-- match by device --"
msgstr "" msgstr "-- cihaza göre eşleştir --"
msgid "-- match by label --" msgid "-- match by label --"
msgstr "" msgstr "-- etikete göre eşleştir --"
msgid "-- match by uuid --" msgid "-- match by uuid --"
msgstr "" msgstr "-- uuid'e göre eşleştir --"
msgid "1 Minute Load:" msgid "1 Minute Load:"
msgstr "1 Dakikalık Yük:" msgstr "1 Dakikalık Yük:"
@ -54,7 +54,7 @@ msgid "15 Minute Load:"
msgstr "15 Dakikalık Yük:" msgstr "15 Dakikalık Yük:"
msgid "4-character hexadecimal ID" msgid "4-character hexadecimal ID"
msgstr "" msgstr "4 karakterli HEX ID"
msgid "464XLAT (CLAT)" msgid "464XLAT (CLAT)"
msgstr "" msgstr ""
@ -168,9 +168,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -204,9 +201,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -313,11 +307,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -402,6 +391,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -416,6 +408,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "" msgstr ""
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -435,7 +430,7 @@ msgid "Auto Refresh"
msgstr "Otomatik Yenileme" msgstr "Otomatik Yenileme"
msgid "Automatic" msgid "Automatic"
msgstr "" msgstr "Otomatik"
msgid "Automatic Homenet (HNCP)" msgid "Automatic Homenet (HNCP)"
msgstr "" msgstr ""
@ -474,7 +469,7 @@ msgid "BR / DMR / AFTR"
msgstr "" msgstr ""
msgid "BSSID" msgid "BSSID"
msgstr "" msgstr "BSSID"
msgid "Back" msgid "Back"
msgstr "Geri" msgstr "Geri"
@ -506,9 +501,6 @@ msgstr ""
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -560,19 +552,19 @@ msgid "CA certificate; if empty it will be saved after the first connection."
msgstr "" msgstr ""
msgid "CPU usage (%)" msgid "CPU usage (%)"
msgstr "" msgstr "CPU kullanımı (%)"
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "Vazgeç"
msgid "Category" msgid "Category"
msgstr "" msgstr "Kategori"
msgid "Chain" msgid "Chain"
msgstr "" msgstr "Zincir"
msgid "Changes" msgid "Changes"
msgstr "" msgstr "Değişiklikler"
msgid "Changes applied." msgid "Changes applied."
msgstr "" msgstr ""
@ -584,7 +576,7 @@ msgid "Changes the administrator password for accessing the device"
msgstr "" msgstr ""
msgid "Channel" msgid "Channel"
msgstr "" msgstr "Kanal"
msgid "" msgid ""
"Channel %d is not available in the %s regulatory domain and has been auto-" "Channel %d is not available in the %s regulatory domain and has been auto-"
@ -681,9 +673,6 @@ msgstr ""
msgid "Connection Limit" msgid "Connection Limit"
msgstr "" msgstr ""
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
@ -819,9 +808,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1340,9 +1326,6 @@ msgstr ""
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1398,7 +1381,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1449,15 +1432,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -1847,10 +1827,10 @@ msgid "Logging"
msgstr "" msgstr ""
msgid "Login" msgid "Login"
msgstr "" msgstr "Oturum Aç"
msgid "Logout" msgid "Logout"
msgstr "" msgstr "Oturumu Kapat"
msgid "Loss of Signal Seconds (LOSS)" msgid "Loss of Signal Seconds (LOSS)"
msgstr "" msgstr ""
@ -2023,9 +2003,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -2197,12 +2174,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2661,9 +2632,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2693,13 +2661,13 @@ msgid ""
msgstr "" msgstr ""
msgid "Reset" msgid "Reset"
msgstr "" msgstr "Sıfırla"
msgid "Reset Counters" msgid "Reset Counters"
msgstr "" msgstr "Sayaçları Sıfırla"
msgid "Reset to defaults" msgid "Reset to defaults"
msgstr "" msgstr "Varsayılanlara dön"
msgid "Resolv and Hosts Files" msgid "Resolv and Hosts Files"
msgstr "" msgstr ""
@ -2708,22 +2676,22 @@ msgid "Resolve file"
msgstr "" msgstr ""
msgid "Restart" msgid "Restart"
msgstr "" msgstr "Tekrar başlat"
msgid "Restart Firewall" msgid "Restart Firewall"
msgstr "" msgstr ""
msgid "Restore backup" msgid "Restore backup"
msgstr "" msgstr "Yedeklemeyi geri yükle"
msgid "Reveal/hide password" msgid "Reveal/hide password"
msgstr "" msgstr ""
msgid "Revert" msgid "Revert"
msgstr "" msgstr "Dönmek"
msgid "Revert changes" msgid "Revert changes"
msgstr "" msgstr "Değişiklikleri geri al"
msgid "Revert request failed with status <code>%h</code>" msgid "Revert request failed with status <code>%h</code>"
msgstr "" msgstr ""
@ -2732,7 +2700,7 @@ msgid "Reverting configuration…"
msgstr "" msgstr ""
msgid "Root" msgid "Root"
msgstr "" msgstr "Kök"
msgid "Root directory for files served via TFTP" msgid "Root directory for files served via TFTP"
msgstr "" msgstr ""
@ -2744,19 +2712,16 @@ msgid "Route Allowed IPs"
msgstr "" msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr "Yönlendirme Tipi"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
msgid "Router Password" msgid "Router Password"
msgstr "" msgstr "Yönlendirici Parolası"
msgid "Routes" msgid "Routes"
msgstr "" msgstr "Yönlendirmeler"
msgid "" msgid ""
"Routes specify over which interface and gateway a certain host or network " "Routes specify over which interface and gateway a certain host or network "
@ -2764,60 +2729,52 @@ msgid ""
msgstr "" msgstr ""
msgid "Run a filesystem check before mounting the device" msgid "Run a filesystem check before mounting the device"
msgstr "" msgstr "Cihazı bağlamadan önce bir dosya sistemi kontrolü yapın"
msgid "Run filesystem check" msgid "Run filesystem check"
msgstr "" msgstr "Dosya sistemi kontrolünü çalıştır"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr "SNR"
msgid "SSH Access" msgid "SSH Access"
msgstr "" msgstr "SSH Erişimi"
msgid "SSH server address" msgid "SSH server address"
msgstr "" msgstr "SSH sunucu adresi"
msgid "SSH server port" msgid "SSH server port"
msgstr "" msgstr "SSH sunucu portu"
msgid "SSH username" msgid "SSH username"
msgstr "" msgstr "SSH kullanıcı adı"
msgid "SSH-Keys" msgid "SSH-Keys"
msgstr "" msgstr ""
msgid "SSID" msgid "SSID"
msgstr "" msgstr "SSID"
msgid "Save" msgid "Save"
msgstr "" msgstr "Kaydet"
msgid "Save & Apply" msgid "Save & Apply"
msgstr "" msgstr "Kaydet & Uygula"
msgid "Scan" msgid "Scan"
msgstr "" msgstr "Tara"
msgid "Scheduled Tasks" msgid "Scheduled Tasks"
msgstr "" msgstr "Zamanlanmış Görevler"
msgid "Section added" msgid "Section added"
msgstr "" msgstr "Bölüm eklendi"
msgid "Section removed" msgid "Section removed"
msgstr "" msgstr "Bölüm kaldırıldı"
msgid "See \"mount\" manpage for details" msgid "See \"mount\" manpage for details"
msgstr "" msgstr ""
@ -2833,17 +2790,6 @@ msgstr ""
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2851,7 +2797,7 @@ msgid "Service Type"
msgstr "" msgstr ""
msgid "Services" msgid "Services"
msgstr "" msgstr "Servisler"
msgid "" msgid ""
"Set interface properties regardless of the link carrier (If set, carrier " "Set interface properties regardless of the link carrier (If set, carrier "
@ -2880,25 +2826,25 @@ msgid "Shutdown this network"
msgstr "" msgstr ""
msgid "Signal" msgid "Signal"
msgstr "" msgstr "Sinyal"
msgid "Signal Attenuation (SATN)" msgid "Signal Attenuation (SATN)"
msgstr "" msgstr "Sinyal Zayıflama (SATN)"
msgid "Signal:" msgid "Signal:"
msgstr "" msgstr "Sinyal:"
msgid "Size" msgid "Size"
msgstr "" msgstr "Boyut"
msgid "Size (.ipk)" msgid "Size (.ipk)"
msgstr "" msgstr "Boyut (.ipk)"
msgid "Size of DNS query cache" msgid "Size of DNS query cache"
msgstr "" msgstr ""
msgid "Skip" msgid "Skip"
msgstr "" msgstr "Atla"
msgid "Skip to content" msgid "Skip to content"
msgstr "" msgstr ""
@ -2910,7 +2856,7 @@ msgid "Slot time"
msgstr "" msgstr ""
msgid "Software" msgid "Software"
msgstr "" msgstr "Yazılım"
msgid "Software VLAN" msgid "Software VLAN"
msgstr "" msgstr ""
@ -2931,13 +2877,10 @@ msgid ""
msgstr "" msgstr ""
msgid "Sort" msgid "Sort"
msgstr "" msgstr "Sıralama"
msgid "Source" msgid "Source"
msgstr "" msgstr "Kaynak"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -2972,7 +2915,7 @@ msgid "Specify the secret encryption key here."
msgstr "" msgstr ""
msgid "Start" msgid "Start"
msgstr "" msgstr "Başlat"
msgid "Start priority" msgid "Start priority"
msgstr "" msgstr ""
@ -3005,16 +2948,16 @@ msgid ""
msgstr "" msgstr ""
msgid "Status" msgid "Status"
msgstr "" msgstr "Durum"
msgid "Stop" msgid "Stop"
msgstr "" msgstr "Durdur"
msgid "Strict order" msgid "Strict order"
msgstr "" msgstr ""
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Gönder"
msgid "Suppress logging" msgid "Suppress logging"
msgstr "" msgstr ""
@ -3057,7 +3000,7 @@ msgid "Synchronizing..."
msgstr "" msgstr ""
msgid "System" msgid "System"
msgstr "" msgstr "Sistem"
msgid "System Log" msgid "System Log"
msgstr "" msgstr ""
@ -3208,11 +3151,6 @@ msgid ""
"settings." "settings."
msgstr "" msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3356,15 +3294,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3426,10 +3355,10 @@ msgid "Upload archive..."
msgstr "" msgstr ""
msgid "Uploaded File" msgid "Uploaded File"
msgstr "" msgstr "Yüklenen Dosya"
msgid "Uptime" msgid "Uptime"
msgstr "" msgstr "ılma süresi"
msgid "Use <code>/etc/ethers</code>" msgid "Use <code>/etc/ethers</code>"
msgstr "" msgstr ""
@ -3462,16 +3391,16 @@ msgid "Use builtin IPv6-management"
msgstr "" msgstr ""
msgid "Use custom DNS servers" msgid "Use custom DNS servers"
msgstr "" msgstr "Özel DNS sunucularını kullan"
msgid "Use default gateway" msgid "Use default gateway"
msgstr "" msgstr "Varsayılan ağ geçidini kullan"
msgid "Use gateway metric" msgid "Use gateway metric"
msgstr "" msgstr "Ağ geçidi metriğini kullan"
msgid "Use routing table" msgid "Use routing table"
msgstr "" msgstr "Yönlendirme tablosunu kullan"
msgid "" msgid ""
"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</"
@ -3482,7 +3411,7 @@ msgid ""
msgstr "" msgstr ""
msgid "Used" msgid "Used"
msgstr "" msgstr "Kullanılmış"
msgid "Used Key Slot" msgid "Used Key Slot"
msgstr "" msgstr ""
@ -3499,7 +3428,7 @@ msgid "User key (PEM encoded)"
msgstr "" msgstr ""
msgid "Username" msgid "Username"
msgstr "" msgstr "Kullanıcı adı"
msgid "VC-Mux" msgid "VC-Mux"
msgstr "" msgstr ""
@ -3532,22 +3461,16 @@ msgid "VPNC (CISCO 3000 (and others) VPN)"
msgstr "" msgstr ""
msgid "Vendor" msgid "Vendor"
msgstr "" msgstr "Satıcı"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr "Kontrol"
msgid "Version" msgid "Version"
msgstr "" msgstr "Versiyon"
msgid "WDS" msgid "WDS"
msgstr "" msgstr ""
@ -3572,10 +3495,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3589,7 +3508,7 @@ msgid "Waiting for device..."
msgstr "" msgstr ""
msgid "Warning" msgid "Warning"
msgstr "" msgstr "Uyarı"
msgid "Warning: There are unsaved changes that will get lost on reboot!" msgid "Warning: There are unsaved changes that will get lost on reboot!"
msgstr "" msgstr ""
@ -3599,20 +3518,14 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr "Genişlik"
msgid "WireGuard VPN" msgid "WireGuard VPN"
msgstr "" msgstr ""
msgid "Wireless" msgid "Wireless"
msgstr "" msgstr "Kablosuz"
msgid "Wireless Adapter" msgid "Wireless Adapter"
msgstr "" msgstr ""
@ -3675,28 +3588,28 @@ msgid "auto"
msgstr "otomatik" msgstr "otomatik"
msgid "baseT" msgid "baseT"
msgstr "" msgstr "baseT"
msgid "bridged" msgid "bridged"
msgstr "köprülü" msgstr "köprülü"
msgid "create:" msgid "create:"
msgstr "" msgstr "oluşturma:"
msgid "creates a bridge over specified interface(s)" msgid "creates a bridge over specified interface(s)"
msgstr "" msgstr ""
msgid "dB" msgid "dB"
msgstr "" msgstr "dB"
msgid "dBm" msgid "dBm"
msgstr "" msgstr "dBm"
msgid "disable" msgid "disable"
msgstr "etkin değil" msgstr "etkin değil"
msgid "disabled" msgid "disabled"
msgstr "" msgstr "devre dışı"
msgid "expired" msgid "expired"
msgstr "sona ermiş" msgstr "sona ermiş"
@ -3710,19 +3623,19 @@ msgid "forward"
msgstr "ileri" msgstr "ileri"
msgid "full-duplex" msgid "full-duplex"
msgstr "" msgstr "tam çift yönlü"
msgid "half-duplex" msgid "half-duplex"
msgstr "" msgstr "yarı çift yönlü"
msgid "help" msgid "help"
msgstr "yardım" msgstr "yardım"
msgid "hidden" msgid "hidden"
msgstr "" msgstr "gizli"
msgid "hybrid mode" msgid "hybrid mode"
msgstr "" msgstr "hibrit mod"
msgid "if target is a network" msgid "if target is a network"
msgstr "eğer hedef ağsa" msgstr "eğer hedef ağsa"
@ -3731,34 +3644,31 @@ msgid "input"
msgstr "giriş" msgstr "giriş"
msgid "kB" msgid "kB"
msgstr "" msgstr "kB"
msgid "kB/s" msgid "kB/s"
msgstr "" msgstr "kB/s"
msgid "kbit/s" msgid "kbit/s"
msgstr "" msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "yerel <abbr title=\"Domain Name System\">DNS</abbr> dosyası" msgstr "yerel <abbr title=\"Domain Name System\">DNS</abbr> dosyası"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr "dakika"
msgid "no" msgid "no"
msgstr "hayır" msgstr "hayır"
msgid "no link" msgid "no link"
msgstr "" msgstr "bağlantı yok"
msgid "none" msgid "none"
msgstr "hiçbiri" msgstr "hiçbiri"
msgid "not present" msgid "not present"
msgstr "" msgstr "mevcut değil"
msgid "off" msgid "off"
msgstr "kapalı" msgstr "kapalı"
@ -3767,31 +3677,31 @@ msgid "on"
msgstr "açık" msgstr "açık"
msgid "open" msgid "open"
msgstr "" msgstr "ık"
msgid "overlay" msgid "overlay"
msgstr "" msgstr "bindirilmiş"
msgid "random" msgid "random"
msgstr "" msgstr "rastgele"
msgid "relay mode" msgid "relay mode"
msgstr "" msgstr "anahtarlama modu"
msgid "routed" msgid "routed"
msgstr "yönlendirildi" msgstr "yönlendirildi"
msgid "server mode" msgid "server mode"
msgstr "" msgstr "sunucu modu"
msgid "stateful-only" msgid "stateful-only"
msgstr "" msgstr ""
msgid "stateless" msgid "stateless"
msgstr "" msgstr "durumsuz"
msgid "stateless + stateful" msgid "stateless + stateful"
msgstr "" msgstr "durumsuz + durumlu"
msgid "tagged" msgid "tagged"
msgstr "etiketlendi" msgstr "etiketlendi"
@ -3800,7 +3710,7 @@ msgid "time units (TUs / 1.024 ms) [1000-65535]"
msgstr "" msgstr ""
msgid "unknown" msgid "unknown"
msgstr "" msgstr "bilinmeyen"
msgid "unlimited" msgid "unlimited"
msgstr "sınırsız" msgstr "sınırsız"

View file

@ -183,9 +183,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -227,9 +224,6 @@ msgstr "Номер ATM-пристрою"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "Концентратор доступу" msgstr "Концентратор доступу"
@ -337,11 +331,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -426,6 +415,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -440,6 +432,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "Приєднані станції" msgstr "Приєднані станції"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -530,9 +525,6 @@ msgstr "Вказана неправильна адреса!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -719,9 +711,6 @@ msgstr "Підключений"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Гранична кількість підключень" msgstr "Гранична кількість підключень"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "Підключення" msgstr "Підключення"
@ -859,9 +848,6 @@ msgstr "Типовий шлюз"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "Типовий стан" msgstr "Типовий стан"
@ -1403,9 +1389,6 @@ msgstr "Призупинити"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1467,8 +1450,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "Брандмауер IPv4" msgstr "Брандмауер IPv4"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "Статус IPv4 WAN" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "Адреса IPv4" msgstr "Адреса IPv4"
@ -1518,15 +1501,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "Статус IPv6 WAN" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "Адреса IPv6" msgstr "Адреса IPv6"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2119,9 +2099,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "Кандидати для синхронізації NTP-сервера" msgstr "Кандидати для синхронізації NTP-сервера"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Ім'я" msgstr "Ім'я"
@ -2299,12 +2276,6 @@ msgstr "Опція видалена"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2786,9 +2757,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2871,9 +2839,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2899,14 +2864,6 @@ msgstr "Виконати перевірку файлової системи"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2962,17 +2919,6 @@ msgstr "Розділяти клієнтів"
msgid "Server Settings" msgid "Server Settings"
msgstr "Настройки сервера" msgstr "Настройки сервера"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "Назва (ім'я) сервісу" msgstr "Назва (ім'я) сервісу"
@ -3069,9 +3015,6 @@ msgstr "Сортування"
msgid "Source" msgid "Source"
msgstr "Джерело" msgstr "Джерело"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "Визначає каталог, до якого приєднаний пристрій" msgstr "Визначає каталог, до якого приєднаний пристрій"
@ -3385,11 +3328,6 @@ msgstr ""
"з'єднатися. Залежно від ваших настройок, можливо, вам треба буде оновити " "з'єднатися. Залежно від ваших настройок, можливо, вам треба буде оновити "
"адресу вашого комп'ютера, щоб знову отримати доступ до пристрою." "адресу вашого комп'ютера, щоб знову отримати доступ до пристрою."
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3556,15 +3494,6 @@ msgstr "Інтерфейс тунелю"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "Потужність передавача" msgstr "Потужність передавача"
@ -3744,12 +3673,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "Клас постачальника для відправки при запиті DHCP" msgstr "Клас постачальника для відправки при запиті DHCP"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "Перевірте" msgstr "Перевірте"
@ -3781,10 +3704,6 @@ msgstr ""
"WPA-шифрування потребує інсталяції <em>wpa_supplicant</em> (для режиму " "WPA-шифрування потребує інсталяції <em>wpa_supplicant</em> (для режиму "
"клієнта) або <em>hostapd</em> (для Точки доступу та режиму ad-hoc)." "клієнта) або <em>hostapd</em> (для Точки доступу та режиму ad-hoc)."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "Очікуємо, доки зміни наберуть чинності..." msgstr "Очікуємо, доки зміни наберуть чинності..."
@ -3808,12 +3727,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3959,9 +3872,6 @@ msgstr ""
"Локальний <abbr title=\"Domain Name System — система доменних імен\">DNS</" "Локальний <abbr title=\"Domain Name System — система доменних імен\">DNS</"
"abbr>-файл" "abbr>-файл"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -4037,6 +3947,12 @@ msgstr "так"
msgid "« Back" msgid "« Back"
msgstr "« Назад" msgstr "« Назад"
#~ msgid "IPv4 WAN Status"
#~ msgstr "Статус IPv4 WAN"
#~ msgid "IPv6 WAN Status"
#~ msgstr "Статус IPv6 WAN"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "Застосувати" #~ msgstr "Застосувати"

View file

@ -166,9 +166,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -202,9 +199,6 @@ msgstr ""
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "" msgstr ""
@ -307,11 +301,6 @@ msgstr ""
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -396,6 +385,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -410,6 +402,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "" msgstr ""
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -500,9 +495,6 @@ msgstr ""
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -675,9 +667,6 @@ msgstr ""
msgid "Connection Limit" msgid "Connection Limit"
msgstr "Giới hạn kết nối" msgstr "Giới hạn kết nối"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
@ -815,9 +804,6 @@ msgstr ""
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "" msgstr ""
@ -1345,9 +1331,6 @@ msgstr "Hang Up"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1405,7 +1388,7 @@ msgstr ""
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "" msgstr ""
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
@ -1456,15 +1439,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "" msgstr ""
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2040,9 +2020,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "" msgstr ""
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "Tên" msgstr "Tên"
@ -2220,12 +2197,6 @@ msgstr ""
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2686,9 +2657,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2771,9 +2739,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2799,14 +2764,6 @@ msgstr ""
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2860,17 +2817,6 @@ msgstr "Cô lập đối tượng"
msgid "Server Settings" msgid "Server Settings"
msgstr "" msgstr ""
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "" msgstr ""
@ -2963,9 +2909,6 @@ msgstr ""
msgid "Source" msgid "Source"
msgstr "Nguồn" msgstr "Nguồn"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "" msgstr ""
@ -3243,11 +3186,6 @@ msgstr ""
"một vài phút cho tới khi kết nối lại. Có thể cần phải làm mới địa chỉ của " "một vài phút cho tới khi kết nối lại. Có thể cần phải làm mới địa chỉ của "
"máy tính để tiếp cận thiết bị một lần nữa, phụ thuộc vào cài đặt của bạn. " "máy tính để tiếp cận thiết bị một lần nữa, phụ thuộc vào cài đặt của bạn. "
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3398,15 +3336,6 @@ msgstr ""
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "" msgstr ""
@ -3579,12 +3508,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "" msgstr ""
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "" msgstr ""
@ -3614,10 +3537,6 @@ msgid ""
"and ad-hoc mode) to be installed." "and ad-hoc mode) to be installed."
msgstr "" msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "" msgstr ""
@ -3641,12 +3560,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3788,9 +3701,6 @@ msgstr ""
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "Tập tin <abbr title=\"Domain Name System\">DNS</abbr> địa phương" msgstr "Tập tin <abbr title=\"Domain Name System\">DNS</abbr> địa phương"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""

View file

@ -162,9 +162,6 @@ msgstr "A43C + J43 + A43 + V43"
msgid "ADSL" msgid "ADSL"
msgstr "ADSL" msgstr "ADSL"
msgid "AICCU (SIXXS)"
msgstr "AICCU (SIXXS)"
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "ANSI T1.413" msgstr "ANSI T1.413"
@ -200,9 +197,6 @@ msgstr "ATM 设备号码"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "ATU-C 系统供应商 ID" msgstr "ATU-C 系统供应商 ID"
msgid "AYIYA"
msgstr "AYIYA"
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "接入集中器" msgstr "接入集中器"
@ -305,13 +299,6 @@ msgstr "允许 127.0.0.0/8 回环范围内的上行响应例如RBL 服务"
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "允许的 IP" msgstr "允许的 IP"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
"也请查看 SIXXS 上的<a href=\"https://www.sixxs.net/faq/connectivity/?"
"faq=comparison\">隧道对比</a>"
msgid "Always announce default router" msgid "Always announce default router"
msgstr "总是通告默认路由" msgstr "总是通告默认路由"
@ -396,6 +383,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "将每个公共 IPv6 前缀的给定长度部分分配给此接口" msgstr "将每个公共 IPv6 前缀的给定长度部分分配给此接口"
@ -410,6 +400,9 @@ msgstr "将此十六进制子 ID 前缀分配给此接口"
msgid "Associated Stations" msgid "Associated Stations"
msgstr "已连接站点" msgstr "已连接站点"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "认证组" msgstr "认证组"
@ -500,9 +493,6 @@ msgstr "指定了错误的地址!"
msgid "Band" msgid "Band"
msgstr "频宽" msgstr "频宽"
msgid "Behind NAT"
msgstr "在 NAT 网络内"
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -684,9 +674,6 @@ msgstr "已连接"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "连接数限制" msgstr "连接数限制"
msgid "Connection to server fails when TLS cannot be used"
msgstr "当 TLS 不可用时,与服务器连接失败"
msgid "Connections" msgid "Connections"
msgstr "连接" msgstr "连接"
@ -823,9 +810,6 @@ msgstr "默认网关"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "默认是无状态的 + 有状态的" msgstr "默认是无状态的 + 有状态的"
msgid "Default route"
msgstr "默认路由"
msgid "Default state" msgid "Default state"
msgstr "默认状态" msgstr "默认状态"
@ -1357,9 +1341,6 @@ msgstr "挂起"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "请求头错误代码错误HEC" msgstr "请求头错误代码错误HEC"
msgid "Heartbeat"
msgstr "心跳"
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1415,8 +1396,8 @@ msgstr "IPv4"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4 防火墙" msgstr "IPv4 防火墙"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4 WAN 状态" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4 地址" msgstr "IPv4 地址"
@ -1466,15 +1447,12 @@ msgstr "IPv6 设置"
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "IPv6 ULA 前缀" msgstr "IPv6 ULA 前缀"
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6 WAN 状态" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6 地址" msgstr "IPv6 地址"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr "绑定到隧道本端的 IPv6 地址(可选)"
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "IPv6 分配提示" msgstr "IPv6 分配提示"
@ -2056,9 +2034,6 @@ msgstr "NT 域"
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "候选 NTP 服务器" msgstr "候选 NTP 服务器"
msgid "NTP sync time-out"
msgstr "NTP 同步超时"
msgid "Name" msgid "Name"
msgstr "名称" msgstr "名称"
@ -2234,12 +2209,6 @@ msgstr "移除的选项"
msgid "Optional" msgid "Optional"
msgstr "可选" msgstr "可选"
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr "可选设置这个选项会覆盖默认服务器tic.sixxs.net"
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr "可选,如果您的 SIXXS 账号拥有一个以上的隧道请设置此项"
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2713,9 +2682,6 @@ msgstr "请求 IPv6 地址"
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "请求指定长度的 IPv6 前缀" msgstr "请求指定长度的 IPv6 前缀"
msgid "Require TLS"
msgstr "必须使用 TLS"
msgid "Required" msgid "Required"
msgstr "必须" msgstr "必须"
@ -2802,9 +2768,6 @@ msgstr "路由允许的 IP"
msgid "Route type" msgid "Route type"
msgstr "路由类型" msgstr "路由类型"
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr "下行接口的路由 IPv6 前缀"
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "路由通告服务" msgstr "路由通告服务"
@ -2828,14 +2791,6 @@ msgstr "文件系统检查"
msgid "SHA256" msgid "SHA256"
msgstr "SHA256" msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr "SIXXS 仅支持 TIC对于使用 IP 协议 41RFC4213的静态隧道使用 6in4"
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr "SIXXS-handle[/Tunnel-ID]"
msgid "SNR" msgid "SNR"
msgstr "SNR" msgstr "SNR"
@ -2889,17 +2844,6 @@ msgstr "隔离客户端"
msgid "Server Settings" msgid "Server Settings"
msgstr "服务器设置" msgstr "服务器设置"
msgid "Server password"
msgstr "服务器密码"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr "服务器密码,如果用户名包含隧道 ID 则在此填写隧道自己的密码"
msgid "Server username"
msgstr "服务器用户名"
msgid "Service Name" msgid "Service Name"
msgstr "服务名" msgstr "服务名"
@ -2996,9 +2940,6 @@ msgstr "排序"
msgid "Source" msgid "Source"
msgstr "源地址" msgstr "源地址"
msgid "Source routing"
msgstr "源路由"
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "指定设备的挂载目录" msgstr "指定设备的挂载目录"
@ -3285,11 +3226,6 @@ msgstr ""
"正在刷新系统...<br />切勿关闭电源! DO NOT POWER OFF THE DEVICE!<br />等待数分" "正在刷新系统...<br />切勿关闭电源! DO NOT POWER OFF THE DEVICE!<br />等待数分"
"钟后即可尝试重新连接到路由。您可能需要更改计算机的 IP 地址以重新连接。" "钟后即可尝试重新连接到路由。您可能需要更改计算机的 IP 地址以重新连接。"
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr "隧道端点在 NAT 之后,默认为禁用,仅适用于 AYIYA"
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3439,15 +3375,6 @@ msgstr "隧道接口"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "隧道链接" msgstr "隧道链接"
msgid "Tunnel broker protocol"
msgstr "隧道协议"
msgid "Tunnel setup server"
msgstr "隧道配置服务器"
msgid "Tunnel type"
msgstr "隧道类型"
msgid "Tx-Power" msgid "Tx-Power"
msgstr "传输功率" msgstr "传输功率"
@ -3627,12 +3554,6 @@ msgstr "Vendor"
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "请求 DHCP 时发送的 Vendor Class 选项" msgstr "请求 DHCP 时发送的 Vendor Class 选项"
msgid "Verbose"
msgstr "详细"
msgid "Verbose logging by aiccu daemon"
msgstr "Aiccu 守护程序详细日志"
msgid "Verify" msgid "Verify"
msgstr "验证" msgstr "验证"
@ -3664,10 +3585,6 @@ msgstr ""
"WPA 加密需要安装 wpa_supplicant客户端模式或安装 hostapd接入点 AP、点对" "WPA 加密需要安装 wpa_supplicant客户端模式或安装 hostapd接入点 AP、点对"
"点 Ad-Hoc 模式)。" "点 Ad-Hoc 模式)。"
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr "NTP 同步前的等待时间,设置为 0 表示不等待(可选)"
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "正在应用更改..." msgstr "正在应用更改..."
@ -3691,12 +3608,6 @@ msgid ""
"communications" "communications"
msgstr "当使用 PSK 时PMK 可以在没有 AP 间通信的情况下在本地生成" msgstr "当使用 PSK 时PMK 可以在没有 AP 间通信的情况下在本地生成"
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr "是否添加一条通向隧道的 IPv6 默认路由"
msgid "Whether to route only packets from delegated prefixes"
msgstr "是否仅路由来自分发前缀的数据包"
msgid "Width" msgid "Width"
msgstr "频宽" msgstr "频宽"
@ -3838,9 +3749,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "本地 <abbr title=\"Domain Name Syste\">DNS</abbr> 解析文件" msgstr "本地 <abbr title=\"Domain Name Syste\">DNS</abbr> 解析文件"
msgid "minimum 1280, maximum 1480"
msgstr "最小值 1280最大值 1480"
msgid "minutes" msgid "minutes"
msgstr "分钟" msgstr "分钟"
@ -3916,137 +3824,8 @@ msgstr "是"
msgid "« Back" msgid "« Back"
msgstr "« 后退" msgstr "« 后退"
#~ msgid "Apply" #~ msgid "IPv4 WAN Status"
#~ msgstr "应用" #~ msgstr "IPv4 WAN 状态"
#~ msgid "Applying changes" #~ msgid "IPv6 WAN Status"
#~ msgstr "正在应用更改" #~ msgstr "IPv6 WAN 状态"
#~ msgid "Configuration applied."
#~ msgstr "配置已应用。"
#~ msgid "Save &#38; Apply"
#~ msgstr "保存&#38;应用"
#~ msgid "The following changes have been committed"
#~ msgstr "以下更改已提交"
#~ msgid "There are no pending changes to apply!"
#~ msgstr "没有待生效的更改!"
#~ msgid "Action"
#~ msgstr "动作"
#~ msgid "Buttons"
#~ msgstr "按键"
#~ msgid "Handler"
#~ msgstr "处理程序"
#~ msgid "Maximum hold time"
#~ msgstr "最大持续时间"
#~ msgid "Minimum hold time"
#~ msgstr "最低持续时间"
#~ msgid "Path to executable which handles the button event"
#~ msgstr "处理按键动作的可执行文件路径"
#~ msgid "Specifies the button state to handle"
#~ msgstr "指定要处理的按键状态"
#~ msgid "This page allows the configuration of custom button actions"
#~ msgstr "自定义按键动作。"
#~ msgid "Leasetime"
#~ msgstr "租用时间"
#~ msgid "Optional."
#~ msgstr "可选。"
#~ msgid "navigation Navigation"
#~ msgstr "导航"
#~ msgid "skiplink1 Skip to navigation"
#~ msgstr "skiplink1 跳转到导航"
#~ msgid "skiplink2 Skip to content"
#~ msgstr "skiplink2 跳到内容"
#~ msgid "AuthGroup"
#~ msgstr "认证组"
#~ msgid "automatic"
#~ msgstr "自动"
#~ msgid "AR Support"
#~ msgstr "AR 支持"
#~ msgid "Atheros 802.11%s Wireless Controller"
#~ msgstr "Qualcomm/Atheros 802.11%s 无线控制器"
#~ msgid "Background Scan"
#~ msgstr "后台搜索"
#~ msgid "Compression"
#~ msgstr "压缩"
#~ msgid "Disable HW-Beacon timer"
#~ msgstr "停用 HW-Beacon 计时器"
#~ msgid "Do not send probe responses"
#~ msgstr "不回送探测响应"
#~ msgid "Fast Frames"
#~ msgstr "快速帧"
#~ msgid "Maximum Rate"
#~ msgstr "最高速率"
#~ msgid "Minimum Rate"
#~ msgstr "最低速率"
#~ msgid "Multicast Rate"
#~ msgstr "多播速率"
#~ msgid "Outdoor Channels"
#~ msgstr "户外频道"
#~ msgid "Regulatory Domain"
#~ msgstr "无线网络国家区域"
#~ msgid "Separate WDS"
#~ msgstr "隔离 WDS"
#~ msgid "Static WDS"
#~ msgstr "静态 WDS"
#~ msgid "Turbo Mode"
#~ msgstr "Turbo 模式"
#~ msgid "XR Support"
#~ msgstr "XR 支持"
#~ msgid "Required. Public key of peer."
#~ msgstr "必须Peer 的公钥。"
#~ msgid "An additional network will be created if you leave this checked."
#~ msgstr "如果选中此复选框,则会创建一个附加网络。"
#~ msgid "An additional network will be created if you leave this unchecked."
#~ msgstr "取消选中将会另外创建一个新网络,而不会覆盖当前网络设置"
#~ msgid "Join Network: Settings"
#~ msgstr "加入网络:设置"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Port %d"
#~ msgstr "端口 %d"
#~ msgid "Port %d is untagged in multiple VLANs!"
#~ msgstr "端口 %d 在多个 VLAN 中均未标记!"
#~ msgid "VLAN Interface"
#~ msgstr "VLAN 接口"

View file

@ -167,9 +167,6 @@ msgstr ""
msgid "ADSL" msgid "ADSL"
msgstr "" msgstr ""
msgid "AICCU (SIXXS)"
msgstr ""
msgid "ANSI T1.413" msgid "ANSI T1.413"
msgstr "" msgstr ""
@ -205,9 +202,6 @@ msgstr "ATM裝置號碼"
msgid "ATU-C System Vendor ID" msgid "ATU-C System Vendor ID"
msgstr "" msgstr ""
msgid "AYIYA"
msgstr ""
msgid "Access Concentrator" msgid "Access Concentrator"
msgstr "接入集線器" msgstr "接入集線器"
@ -310,11 +304,6 @@ msgstr "允許127.0.0.0/8範圍內的上游回應例如RBL服務"
msgid "Allowed IPs" msgid "Allowed IPs"
msgstr "" msgstr ""
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
msgid "Always announce default router" msgid "Always announce default router"
msgstr "" msgstr ""
@ -399,6 +388,9 @@ msgstr ""
msgid "Apply unchecked" msgid "Apply unchecked"
msgstr "" msgstr ""
msgid "Architecture"
msgstr ""
msgid "" msgid ""
"Assign a part of given length of every public IPv6-prefix to this interface" "Assign a part of given length of every public IPv6-prefix to this interface"
msgstr "" msgstr ""
@ -413,6 +405,9 @@ msgstr ""
msgid "Associated Stations" msgid "Associated Stations"
msgstr "已連接站點" msgstr "已連接站點"
msgid "Associations"
msgstr ""
msgid "Auth Group" msgid "Auth Group"
msgstr "" msgstr ""
@ -503,9 +498,6 @@ msgstr "指定了錯誤的位置!"
msgid "Band" msgid "Band"
msgstr "" msgstr ""
msgid "Behind NAT"
msgstr ""
msgid "" msgid ""
"Below is the determined list of files to backup. It consists of changed " "Below is the determined list of files to backup. It consists of changed "
"configuration files marked by opkg, essential base files and the user " "configuration files marked by opkg, essential base files and the user "
@ -686,9 +678,6 @@ msgstr "已連線"
msgid "Connection Limit" msgid "Connection Limit"
msgstr "連線限制" msgstr "連線限制"
msgid "Connection to server fails when TLS cannot be used"
msgstr ""
msgid "Connections" msgid "Connections"
msgstr "連線數" msgstr "連線數"
@ -826,9 +815,6 @@ msgstr "預設匝道器"
msgid "Default is stateless + stateful" msgid "Default is stateless + stateful"
msgstr "" msgstr ""
msgid "Default route"
msgstr ""
msgid "Default state" msgid "Default state"
msgstr "預設狀態" msgstr "預設狀態"
@ -1358,9 +1344,6 @@ msgstr "斷線"
msgid "Header Error Code Errors (HEC)" msgid "Header Error Code Errors (HEC)"
msgstr "" msgstr ""
msgid "Heartbeat"
msgstr ""
msgid "" msgid ""
"Here you can configure the basic aspects of your device like its hostname or " "Here you can configure the basic aspects of your device like its hostname or "
"the timezone." "the timezone."
@ -1416,8 +1399,8 @@ msgstr "IPv4版"
msgid "IPv4 Firewall" msgid "IPv4 Firewall"
msgstr "IPv4防火牆" msgstr "IPv4防火牆"
msgid "IPv4 WAN Status" msgid "IPv4 Upstream"
msgstr "IPv4寬頻連線狀態" msgstr ""
msgid "IPv4 address" msgid "IPv4 address"
msgstr "IPv4位址" msgstr "IPv4位址"
@ -1467,15 +1450,12 @@ msgstr ""
msgid "IPv6 ULA-Prefix" msgid "IPv6 ULA-Prefix"
msgstr "" msgstr ""
msgid "IPv6 WAN Status" msgid "IPv6 Upstream"
msgstr "IPv6寬頻連線狀態" msgstr ""
msgid "IPv6 address" msgid "IPv6 address"
msgstr "IPv6位址" msgstr "IPv6位址"
msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr ""
msgid "IPv6 assignment hint" msgid "IPv6 assignment hint"
msgstr "" msgstr ""
@ -2047,9 +2027,6 @@ msgstr ""
msgid "NTP server candidates" msgid "NTP server candidates"
msgstr "NTP伺服器備選" msgstr "NTP伺服器備選"
msgid "NTP sync time-out"
msgstr ""
msgid "Name" msgid "Name"
msgstr "名稱" msgstr "名稱"
@ -2225,12 +2202,6 @@ msgstr "選項已移除"
msgid "Optional" msgid "Optional"
msgstr "" msgstr ""
msgid "Optional, specify to override default server (tic.sixxs.net)"
msgstr ""
msgid "Optional, use when the SIXXS account has more than one tunnel"
msgstr ""
msgid "" msgid ""
"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
"starting with <code>0x</code>." "starting with <code>0x</code>."
@ -2700,9 +2671,6 @@ msgstr ""
msgid "Request IPv6-prefix of length" msgid "Request IPv6-prefix of length"
msgstr "" msgstr ""
msgid "Require TLS"
msgstr ""
msgid "Required" msgid "Required"
msgstr "" msgstr ""
@ -2785,9 +2753,6 @@ msgstr ""
msgid "Route type" msgid "Route type"
msgstr "" msgstr ""
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service" msgid "Router Advertisement-Service"
msgstr "" msgstr ""
@ -2811,14 +2776,6 @@ msgstr "執行系統檢查"
msgid "SHA256" msgid "SHA256"
msgstr "" msgstr ""
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
msgstr ""
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR" msgid "SNR"
msgstr "" msgstr ""
@ -2872,17 +2829,6 @@ msgstr "分隔用戶端"
msgid "Server Settings" msgid "Server Settings"
msgstr "伺服器設定值" msgstr "伺服器設定值"
msgid "Server password"
msgstr ""
msgid ""
"Server password, enter the specific password of the tunnel when the username "
"contains the tunnel ID"
msgstr ""
msgid "Server username"
msgstr ""
msgid "Service Name" msgid "Service Name"
msgstr "服務名稱" msgstr "服務名稱"
@ -2978,9 +2924,6 @@ msgstr "分類"
msgid "Source" msgid "Source"
msgstr "來源" msgstr "來源"
msgid "Source routing"
msgstr ""
msgid "Specifies the directory the device is attached to" msgid "Specifies the directory the device is attached to"
msgstr "指定這個設備被附掛到那個目錄" msgstr "指定這個設備被附掛到那個目錄"
@ -3275,11 +3218,6 @@ msgstr ""
"系統現正刷機中.<br /> 請勿關閉設備!<br /> 等待數分鐘直到您重新在連線. 可能需" "系統現正刷機中.<br /> 請勿關閉設備!<br /> 等待數分鐘直到您重新在連線. 可能需"
"要更新您電腦的位址以便再連設備, 端看您的設定. " "要更新您電腦的位址以便再連設備, 端看您的設定. "
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
msgstr ""
msgid "" msgid ""
"The uploaded image file does not contain a supported format. Make sure that " "The uploaded image file does not contain a supported format. Make sure that "
"you choose the generic image format for your platform." "you choose the generic image format for your platform."
@ -3430,15 +3368,6 @@ msgstr "通道介面"
msgid "Tunnel Link" msgid "Tunnel Link"
msgstr "" msgstr ""
msgid "Tunnel broker protocol"
msgstr ""
msgid "Tunnel setup server"
msgstr ""
msgid "Tunnel type"
msgstr ""
msgid "Tx-Power" msgid "Tx-Power"
msgstr "傳送-功率" msgstr "傳送-功率"
@ -3616,12 +3545,6 @@ msgstr ""
msgid "Vendor Class to send when requesting DHCP" msgid "Vendor Class to send when requesting DHCP"
msgstr "當請求DHCP封包時要傳送的製造商類別碼" msgstr "當請求DHCP封包時要傳送的製造商類別碼"
msgid "Verbose"
msgstr ""
msgid "Verbose logging by aiccu daemon"
msgstr ""
msgid "Verify" msgid "Verify"
msgstr "確認" msgstr "確認"
@ -3653,10 +3576,6 @@ msgstr ""
"WPA-加密需要 wpa_supplican(終端模式)或者hostapd熱點(對AP或者是 ad-hoc模式)已" "WPA-加密需要 wpa_supplican(終端模式)或者hostapd熱點(對AP或者是 ad-hoc模式)已"
"被安裝." "被安裝."
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
msgstr ""
msgid "Waiting for changes to be applied..." msgid "Waiting for changes to be applied..."
msgstr "等待修改被啟用..." msgstr "等待修改被啟用..."
@ -3680,12 +3599,6 @@ msgid ""
"communications" "communications"
msgstr "" msgstr ""
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width" msgid "Width"
msgstr "" msgstr ""
@ -3825,9 +3738,6 @@ msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr> 檔案" msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr> 檔案"
msgid "minimum 1280, maximum 1480"
msgstr ""
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
@ -3903,6 +3813,12 @@ msgstr "是的"
msgid "« Back" msgid "« Back"
msgstr "« 倒退" msgstr "« 倒退"
#~ msgid "IPv4 WAN Status"
#~ msgstr "IPv4寬頻連線狀態"
#~ msgid "IPv6 WAN Status"
#~ msgstr "IPv6寬頻連線狀態"
#~ msgid "Apply" #~ msgid "Apply"
#~ msgstr "套用" #~ msgstr "套用"

BIN
luci-base/src/po2lmo Executable file

Binary file not shown.

BIN
luci-base/src/po2lmo.o Normal file

Binary file not shown.

Binary file not shown.