diff options
Diffstat (limited to 'applications/luci-app-firewall')
34 files changed, 13231 insertions, 3059 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js b/applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js index 198528aaa5..e983035b3d 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js @@ -308,5 +308,139 @@ return L.Class.extend({ else /* if (x == 'DROP') */ return _('Discard input'); } + }, + + addDSCPOption: function(s, is_target) { + var o = s.taboption(is_target ? 'general' : 'advanced', form.Value, is_target ? 'set_dscp' : 'dscp', + is_target ? _('DSCP mark') : _('Match DSCP'), + is_target ? _('Apply the given DSCP class or value to established connections.') : _('Matches traffic carrying the specified DSCP marking.')); + + o.modalonly = true; + o.rmempty = !is_target; + o.placeholder = _('any'); + + if (is_target) + o.depends('target', 'DSCP'); + + o.value('CS0'); + o.value('CS1'); + o.value('CS2'); + o.value('CS3'); + o.value('CS4'); + o.value('CS5'); + o.value('CS6'); + o.value('CS7'); + o.value('BE'); + o.value('AF11'); + o.value('AF12'); + o.value('AF13'); + o.value('AF21'); + o.value('AF22'); + o.value('AF23'); + o.value('AF31'); + o.value('AF32'); + o.value('AF33'); + o.value('AF41'); + o.value('AF42'); + o.value('AF43'); + o.value('EF'); + o.validate = function(section_id, value) { + if (value == '') + return is_target ? _('DSCP mark required') : true; + + if (!is_target) + value = String(value).replace(/^!\s*/, ''); + + var m = value.match(/^(?:CS[0-7]|BE|AF[1234][123]|EF|(0x[0-9a-f]{1,2}|[0-9]{1,2}))$/); + + if (!m || (m[1] != null && +m[1] > 0x3f)) + return _('Invalid DSCP mark'); + + return true; + }; + + return o; + }, + + addMarkOption: function(s, is_target) { + var o = s.taboption(is_target ? 'general' : 'advanced', form.Value, + (is_target > 1) ? 'set_xmark' : (is_target ? 'set_mark' : 'mark'), + (is_target > 1) ? _('XOR mark') : (is_target ? _('Set mark') : _('Match mark')), + (is_target > 1) ? _('Apply a bitwise XOR of the given value and the existing mark value on established connections. Format is value[/mask]. If a mask is specified then those bits set in the mask are zeroed out.') : + (is_target ? _('Set the given mark value on established connections. Format is value[/mask]. If a mask is specified then only those bits set in the mask are modified.') : + _('Matches a specific firewall mark or a range of different marks.'))); + + o.modalonly = true; + o.rmempty = true; + + if (is_target > 1) + o.depends('target', 'MARK_XOR'); + else if (is_target) + o.depends('target', 'MARK_SET'); + + o.validate = function(section_id, value) { + if (value == '') + return is_target ? _('Valid firewall mark required') : true; + + if (!is_target) + value = String(value).replace(/^!\s*/, ''); + + var m = value.match(/^(0x[0-9a-f]{1,8}|[0-9]{1,10})(?:\/(0x[0-9a-f]{1,8}|[0-9]{1,10}))?$/i); + + if (!m || +m[1] > 0xffffffff || (m[2] != null && +m[2] > 0xffffffff)) + return _('Expecting: %s').format(_('valid firewall mark')); + + return true; + }; + + return o; + }, + + addLimitOption: function(s) { + var o = s.taboption('advanced', form.Value, 'limit', + _('Limit matching'), + _('Limits traffic matching to the specified rate.')); + + o.modalonly = true; + o.rmempty = true; + o.placeholder = _('unlimited'); + o.value('10/second'); + o.value('60/minute'); + o.value('3/hour'); + o.value('500/day'); + o.validate = function(section_id, value) { + if (value == '') + return true; + + var m = String(value).toLowerCase().match(/^(?:0x[0-9a-f]{1,8}|[0-9]{1,10})\/([a-z]+)$/), + u = ['second', 'minute', 'hour', 'day'], + i = 0; + + if (m) + for (i = 0; i < u.length; i++) + if (u[i].indexOf(m[1]) == 0) + break; + + if (!m || i >= u.length) + return _('Invalid limit value'); + + return true; + }; + + return o; + }, + + addLimitBurstOption: function(s) { + var o = s.taboption('advanced', form.Value, 'limit_burst', + _('Limit burst'), + _('Maximum initial number of packets to match: this number gets recharged by one every time the limit specified above is not reached, up to this number.')); + + o.modalonly = true; + o.rmempty = true; + o.placeholder = '5'; + o.datatype = 'uinteger'; + o.depends({ limit: null, '!reverse': true }); + + return o; } }); diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js index dc2249275e..500e68fb17 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js @@ -43,7 +43,7 @@ function fmt(fmt /*, ...*/) { function forward_proto_txt(s) { return fmt('%s-%s', - fwtool.fmt_family(uci.get('firewall', s, 'family')), + fwtool.fmt_family('ipv4'), fwtool.fmt_proto(uci.get('firewall', s, 'proto'), uci.get('firewall', s, 'icmp_type')) || 'TCP+UDP'); } @@ -79,14 +79,22 @@ return L.view.extend({ expect: { '': {} } }), + callConntrackHelpers: rpc.declare({ + object: 'luci', + method: 'getConntrackHelpers', + expect: { result: [] } + }), + load: function() { return Promise.all([ - this.callHostHints() + this.callHostHints(), + this.callConntrackHelpers() ]); }, render: function(data) { var hosts = data[0], + ctHelpers = data[1], m, s, o; m = new form.Map('firewall', _('Firewall - Port Forwards'), @@ -264,6 +272,37 @@ return L.view.extend({ o.rmempty = true; o.default = o.enabled; + o = s.taboption('advanced', form.ListValue, 'reflection_src', _('Loopback source IP'), _('Specifies whether to use the external or the internal IP address for reflected traffic.')); + o.modalonly = true; + o.depends('reflection', '1'); + o.value('internal', _('Use internal IP address')); + o.value('external', _('Use external IP address')); + o.write = function(section_id, value) { + uci.set('firewall', section_id, 'reflection_src', (value != 'internal') ? value : null); + }; + + o = s.taboption('advanced', form.Value, 'helper', _('Match helper'), _('Match traffic using the specified connection tracking helper.')); + o.modalonly = true; + o.placeholder = _('any'); + for (var i = 0; i < ctHelpers.length; i++) + o.value(ctHelpers[i].name, '%s (%s)'.format(ctHelpers[i].description, ctHelpers[i].name.toUpperCase())); + o.validate = function(section_id, value) { + if (value == '' || value == null) + return true; + + value = value.replace(/^!\s*/, ''); + + for (var i = 0; i < ctHelpers.length; i++) + if (value == ctHelpers[i].name) + return true; + + return _('Unknown or not installed conntrack helper "%s"').format(value); + }; + + fwtool.addMarkOption(s, false); + fwtool.addLimitOption(s); + fwtool.addLimitBurstOption(s); + o = s.taboption('advanced', form.Value, 'extra', _('Extra arguments'), _('Passes additional arguments to iptables. Use with care!')); o.modalonly = true; diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js index a0d4cfc063..6c6efc805f 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js @@ -148,14 +148,23 @@ return L.view.extend({ expect: { '': {} } }), + callConntrackHelpers: rpc.declare({ + object: 'luci', + method: 'getConntrackHelpers', + expect: { result: [] } + }), + load: function() { - return this.callHostHints().catch(function(e) { - console.debug('load fail', e); - }); + return Promise.all([ + this.callHostHints(), + this.callConntrackHelpers() + ]); }, - render: function(hosts) { - var m, s, o; + render: function(data) { + var hosts = data[0], + ctHelpers = data[1], + m, s, o; m = new form.Map('firewall', _('Firewall - Traffic Rules'), _('Traffic rules define policies for packets traveling between different zones, for example to reject traffic between certain hosts or to open WAN ports on the router.')); @@ -223,9 +232,34 @@ return L.view.extend({ o.default = o.enabled; o.editable = true; - //ft.opt_enabled(s, Button); - //ft.opt_name(s, Value, _('Name')); + o = s.taboption('advanced', form.ListValue, 'direction', _('Match device')); + o.modalonly = true; + o.value('', _('unspecified')); + o.value('in', _('Inbound device')); + o.value('out', _('Outbound device')); + o.cfgvalue = function(section_id) { + var val = uci.get('firewall', section_id, 'direction'); + switch (val) { + case 'in': + case 'ingress': + return 'in'; + + case 'out': + case 'egress': + return 'out'; + } + + return null; + }; + + o = s.taboption('advanced', widgets.DeviceSelect, 'device', _('Device name'), + _('Specifies whether to tie this traffic rule to a specific inbound or outbound network device.')); + o.modalonly = true; + o.noaliases = true; + o.rmempty = false; + o.depends('direction', 'in'); + o.depends('direction', 'out'); o = s.taboption('advanced', form.ListValue, 'family', _('Restrict to address family')); o.modalonly = true; @@ -358,6 +392,56 @@ return L.view.extend({ o.value('ACCEPT', _('accept')); o.value('REJECT', _('reject')); o.value('NOTRACK', _("don't track")); + o.value('HELPER', _('assign conntrack helper')); + o.value('MARK_SET', _('apply firewall mark')); + o.value('MARK_XOR', _('XOR firewall mark')); + o.value('DSCP', _('DSCP classification')); + o.cfgvalue = function(section_id) { + var t = uci.get('firewall', section_id, 'target'), + m = uci.get('firewall', section_id, 'set_mark'); + + if (t == 'MARK') + return m ? 'MARK_SET' : 'MARK_XOR'; + + return t; + }; + o.write = function(section_id, value) { + return this.super('write', [section_id, (value == 'MARK_SET' || value == 'MARK_XOR') ? 'MARK' : value]); + }; + + fwtool.addMarkOption(s, 1); + fwtool.addMarkOption(s, 2); + fwtool.addDSCPOption(s, true); + + o = s.taboption('general', form.ListValue, 'set_helper', _('Tracking helper'), _('Assign the specified connection tracking helper to matched traffic.')); + o.modalonly = true; + o.placeholder = _('any'); + o.depends('target', 'HELPER'); + for (var i = 0; i < ctHelpers.length; i++) + o.value(ctHelpers[i].name, '%s (%s)'.format(ctHelpers[i].description, ctHelpers[i].name.toUpperCase())); + + o = s.taboption('advanced', form.Value, 'helper', _('Match helper'), _('Match traffic using the specified connection tracking helper.')); + o.modalonly = true; + o.placeholder = _('any'); + for (var i = 0; i < ctHelpers.length; i++) + o.value(ctHelpers[i].name, '%s (%s)'.format(ctHelpers[i].description, ctHelpers[i].name.toUpperCase())); + o.validate = function(section_id, value) { + if (value == '' || value == null) + return true; + + value = value.replace(/^!\s*/, ''); + + for (var i = 0; i < ctHelpers.length; i++) + if (value == ctHelpers[i].name) + return true; + + return _('Unknown or not installed conntrack helper "%s"').format(value); + }; + + fwtool.addMarkOption(s, false); + fwtool.addDSCPOption(s, false); + fwtool.addLimitOption(s); + fwtool.addLimitBurstOption(s); o = s.taboption('advanced', form.Value, 'extra', _('Extra arguments'), _('Passes additional arguments to iptables. Use with care!')); diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js index 48fd98ff28..919a418fe6 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js @@ -81,10 +81,11 @@ function snat_proto_txt(s) { var m = uci.get('firewall', s, 'mark'), p = uci.get('firewall', s, 'proto'); - return fmt(_('Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?with firewall mark %{mark}}'), { + return fmt(_('Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?with firewall mark %{mark}} %{limit?limited to %{limit}}'), { protocol: (p && p != 'all' && p != 'any' && p != '*') ? fwtool.fmt_proto(uci.get('firewall', s, 'proto')) : null, family: fwtool.fmt_family('ipv4'), - mark: m ? E('var', {}, fwtool.fmt_neg(m)) : null + mark: m ? E('var', {}, fwtool.fmt_neg(m)) : null, + limit: fwtool.fmt_limit(uci.get('firewall', s, 'limit'), uci.get('firewall', s, 'limit_burst')) }); } @@ -312,21 +313,9 @@ return L.view.extend({ o.modalonly = true; o.rmempty = true; - o = s.taboption('advanced', form.Value, 'mark', _('Match mark'), - _('Matches a specific firewall mark or a range of different marks.')); - o.modalonly = true; - o.rmempty = true; - o.validate = function(section_id, value) { - if (value == '') - return true; - - var m = String(value).match(/^(?:!\s*)?(0x[0-9a-f]{1,8}|[0-9]{1,10})(?:\/(0x[0-9a-f]{1,8}|[0-9]{1,10}))?$/i); - - if (!m || +m[1] > 0xffffffff || (m[2] != null && +m[2] > 0xffffffff)) - return _('Expecting: %s').format(_('valid firewall mark')); - - return true; - }; + fwtool.addMarkOption(s, false); + fwtool.addLimitOption(s); + fwtool.addLimitBurstOption(s); o = s.taboption('advanced', form.Value, 'extra', _('Extra arguments'), _('Passes additional arguments to iptables. Use with care!')); diff --git a/applications/luci-app-firewall/po/bg/firewall.po b/applications/luci-app-firewall/po/bg/firewall.po index 481955bd2b..6498e6f6f8 100644 --- a/applications/luci-app-firewall/po/bg/firewall.po +++ b/applications/luci-app-firewall/po/bg/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -22,7 +22,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -86,15 +96,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -128,7 +156,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -139,18 +167,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -169,6 +218,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -185,12 +238,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -202,6 +256,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -210,16 +268,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -247,11 +306,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -264,11 +327,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -299,8 +363,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -328,12 +397,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -342,32 +411,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -376,6 +473,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -384,32 +485,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -418,31 +597,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -455,28 +644,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -504,19 +694,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -555,46 +788,65 @@ msgstr "" # msgid "Protocol" # msgstr "" # -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -624,15 +876,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -652,19 +907,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -672,13 +938,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -686,6 +962,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -698,6 +982,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -706,14 +994,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -722,28 +1020,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -757,19 +1063,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -796,7 +1115,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -819,3 +1138,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/ca/firewall.po b/applications/luci-app-firewall/po/ca/firewall.po index 2e98665288..f6341cf093 100644 --- a/applications/luci-app-firewall/po/ca/firewall.po +++ b/applications/luci-app-firewall/po/ca/firewall.po @@ -16,7 +16,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s en %s" @@ -24,7 +24,7 @@ msgstr "%s en %s" msgid "%s%s with %s" msgstr "%s%s amb %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s en %s" @@ -40,6 +40,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> i limita a %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -52,8 +60,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Acció" @@ -70,8 +79,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Ajusts avançats" @@ -88,15 +98,33 @@ msgstr "Permet el reenviament des dels <em>zones d'origen</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Permet el reenviament als <em>zones de destí</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Qualsevol" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -130,7 +158,7 @@ msgstr "Xarxes cobertes" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Regles personalitzades" @@ -145,18 +173,39 @@ msgstr "" "ordres s'executen després de cada reinici de tallafocs, just després el " "conjunt de regles per defecte s'ha carregat." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Adreça IP de destí" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Adreça de destí" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Port de destí" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zona de destí" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -175,6 +224,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "No reescriguis" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -191,12 +244,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Descarta els paquets invàlids" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Activa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -208,6 +262,10 @@ msgstr "Habilita protecció contra la inundació SYN" msgid "Enable logging on this zone" msgstr "Habilita el registre d'aquesta zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -216,16 +274,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Adreça IP extern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Port extern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Paràmetres extres" @@ -249,11 +308,15 @@ msgstr "Tallafocs" msgid "Firewall - Custom Rules" msgstr "Tallafocs - Regles personalitzades" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Tallafocs - Reenviaments de port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Tallafocs - Regles de tràfic" @@ -266,11 +329,12 @@ msgstr "Tallafocs - Ajusts de zona" msgid "Forward" msgstr "Reenvia" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Reenvia a" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Divendres" @@ -301,8 +365,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -330,12 +399,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 i IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Només IPv4" @@ -344,32 +413,60 @@ msgstr "Només IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Només IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Entrada" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Adreça IP interna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Port intern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zona interna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limita els missatges de registre" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -378,6 +475,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Fixació MSS" @@ -386,16 +487,54 @@ msgstr "Fixació MSS" msgid "Masquerading" msgstr "Mascarada" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Coincideix" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Coincideix amb el tipus ICMP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -403,17 +542,57 @@ msgstr "" "Coincideix amb trànsit entrant dirigit al port o rang de ports de destí en " "aquest host donat" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Dilluns" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nom" @@ -422,19 +601,19 @@ msgstr "Nom" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Només coincideix amb trànsit entrant dirigit a la adreça IP donada." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Només coincideix amb trànsit entrant des d'aquests MAC." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Només coincideix amb trànsit entrant des d'aquest IP o rang." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -442,13 +621,23 @@ msgstr "" "Només coincideix amb trànsit originant en el host client des del port o del " "rang de ports d'origen donat" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Sortida" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "Passa paràmetres addicionals al iptables. Utilitzeu-ho amb cura!" @@ -461,12 +650,12 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Reenviaments de port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -474,17 +663,18 @@ msgstr "" "El reenviament de ports permet que els ordinadors remots en el Internet " "connectin a un ordinador o servei específic dins del LAN privat." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocol" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "Redirigeix trànsit entrant coincidit al port donat en el host intern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Redirigeix trànsit entrant coincidit al host intern especificat" @@ -512,19 +702,62 @@ msgstr "Restringeix la mascarada a les subxarxes de destí donades" msgid "Restrict Masquerading to given source subnets" msgstr "Restringeix la mascarada a les subxarxes d'origen donades" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Restringeix a la família d'adreces" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Dissabte" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -533,46 +766,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Adreça IP d'origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Adreça MAC d'origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Adreça d'origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Port d'origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zona d'origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Diumenge" @@ -617,15 +869,18 @@ msgstr "" "<em>Xarxes cobertes</em> especifica quines xarxes disponibles són membres " "d'aquesta zona." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Dijous" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -645,12 +900,22 @@ msgstr "A %s en <var>aquest dispositiu</var>" msgid "To %s, %s in %s" msgstr "A %s, %s en %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Regles de trànsit" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -660,7 +925,8 @@ msgstr "" "zones distintes, per exemple per a rebutjar trànsit entre certs hosts o " "obrir ports WAN en el encaminador." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Dimarts" @@ -668,13 +934,23 @@ msgstr "Dimarts" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -682,6 +958,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -694,6 +978,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Via %s" @@ -702,14 +990,24 @@ msgstr "Via %s" msgid "Via %s at %s" msgstr "Via %s a %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Dimecres" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zona ⇒ Reenviaments" @@ -718,28 +1016,36 @@ msgstr "Zona ⇒ Reenviaments" msgid "Zones" msgstr "Zones" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "accepta" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "qualsevol" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -753,19 +1059,32 @@ msgstr "qualsevol IP d'encaminador" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "qualsevol zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "no rastregis" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -792,7 +1111,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -816,6 +1135,18 @@ msgstr "" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Força el rastreig de connexió" @@ -825,9 +1156,6 @@ msgstr "" #~ msgid "Add and edit..." #~ msgstr "Afegeix i edita..." -#~ msgid "Do not rewrite" -#~ msgstr "No reescriguis" - #~ msgid "External zone" #~ msgstr "Zona extern" @@ -867,9 +1195,6 @@ msgstr "" #~ msgid "(Unnamed SNAT)" #~ msgstr "(SNAT sense nom)" -#~ msgid "Destination IP address" -#~ msgstr "Adreça IP de destí" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Reenviament interzonal" diff --git a/applications/luci-app-firewall/po/cs/firewall.po b/applications/luci-app-firewall/po/cs/firewall.po index 74f7884276..437ff82d2d 100644 --- a/applications/luci-app-firewall/po/cs/firewall.po +++ b/applications/luci-app-firewall/po/cs/firewall.po @@ -12,7 +12,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s v %s" @@ -20,7 +20,7 @@ msgstr "%s v %s" msgid "%s%s with %s" msgstr "%s%s s %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s v %s" @@ -36,6 +36,14 @@ msgstr "<var>%d</var> paketů za <var>%s</var>, burst <var>%d</var> paketů." msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> a omezit na %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -48,8 +56,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Akce" @@ -66,8 +75,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Pokročilé nastavení" @@ -84,15 +94,33 @@ msgstr "Povolit přesměrování ze <em>zdrojových oblastí</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Povolit přesměrování do <em>zdrojových oblastí</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Libovolné" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -126,7 +154,7 @@ msgstr "Pokryté sítě" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Vlastní pravidla" @@ -140,18 +168,39 @@ msgstr "" "nejsou jinak pokryté frameworkem firewallu. Příkazy jsou spuštěny po každém " "restartu firewallu, právě po načtení výchozí sady pravidel." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Cílová IP adresa" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Cílová adresa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Cílový port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Cílová zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -170,6 +219,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Nepřepisovat" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -186,12 +239,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Zahazovat neplatné pakety" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Povolit" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Povolit NAT Loopback" @@ -203,6 +257,10 @@ msgstr "Povolit ochranu proti SYN-flood" msgid "Enable logging on this zone" msgstr "Povolit logování v této oblasti" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -211,16 +269,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Vnější IP adresa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Vnější port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Další argumenty volání" @@ -244,11 +303,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Vlastní pravidla" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Přesměrování portů" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Pravidla síťového provozu" @@ -261,11 +324,12 @@ msgstr "Firewall - Nastavení zón" msgid "Forward" msgstr "Přesměrování" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Přesměrovat na" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Pátek" @@ -296,8 +360,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -325,12 +394,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 a IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "pouze IPv4" @@ -339,32 +408,60 @@ msgstr "pouze IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "pouze IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Vstup" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Vnitřní IP adresa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Vnitřní port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Vnitřní zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Omezit logovací zprávy" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -373,6 +470,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS clamping" @@ -381,16 +482,54 @@ msgstr "MSS clamping" msgid "Masquerading" msgstr "Maškárádování" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Shoda" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Odpovídá ICMP typu" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -398,17 +537,57 @@ msgstr "" "Vybrat příchozí provoz, směrovaný na zadaný cílový port nebo rozsah portů " "tohoto hostitele" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Pondělí" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Dny v měsíci" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Název" @@ -417,19 +596,19 @@ msgstr "Název" msgid "Network" msgstr "Síť" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Vybrat pouze příchozí provoz, směrovaný na danou IP adresu." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Vybrat pouze příchozí provoz z těchto MAC adres." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Vybrat pouze příchozí provoz z této IP nebo rozsahu IP adres." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -437,13 +616,23 @@ msgstr "" "Vybrat pouze příchozí provoz, pocházející ze zadaného portu nebo rozsahu " "portů klienta" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Výstup" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "Předává další argumenty iptables. Používat opatrně!" @@ -456,12 +645,12 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Přesměrování portů" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -470,18 +659,19 @@ msgstr "" "Internetu připojení k vybraným počítačům nebo službám uvnitř privátní sítě " "LAN." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protokol" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Přesměrovat vybraný příchozí provoz na uvedený port vnitřního hostitele" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Přesměrovat vybraný příchozí provoz na uvedeného vnitřního hostitele" @@ -509,19 +699,62 @@ msgstr "Omezit maškarádování na uvedené cílové podsítě" msgid "Restrict Masquerading to given source subnets" msgstr "Omezit maškarádování na uvedené zdrojové podsítě" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Omezit na rodinu adres" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sobota" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -530,46 +763,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Zdrojová IP adresa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Zdrojová MAC adresa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Zdrojová adresa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Zdrojový port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zdrojová zóna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Neděle" @@ -612,15 +864,18 @@ msgstr "" "pro přesměrování provozu mezi rozdílnými sítěmi uvnitř jedné zóny. " "<em>Pokryté sítě</em> určuje, které z dostupných sítí jsou členy této zóny." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Čtvrtek" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Časová omezení" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Čas v UTC" @@ -640,12 +895,22 @@ msgstr "Na %s na <var>tomto zařízení</var>" msgid "To %s, %s in %s" msgstr "Na %s, %s v %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Pravidla síťového provozu" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -655,7 +920,8 @@ msgstr "" "různými zónami, například pro odmítnutí provozu mezi jistými hostiteli nebo " "pro otevření WAN portů na routeru." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Úterý" @@ -663,13 +929,23 @@ msgstr "Úterý" msgid "Unable to save contents: %s" msgstr "Nelze uložit obsah: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Nepojmenované pravidlo" @@ -677,6 +953,14 @@ msgstr "Nepojmenované pravidlo" msgid "Unnamed zone" msgstr "Nepojmenovaná zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -689,6 +973,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Prostřednictvím %s" @@ -697,14 +985,24 @@ msgstr "Prostřednictvím %s" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Středa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zóna ⇒ Přesměrování" @@ -713,28 +1011,36 @@ msgstr "Zóna ⇒ Přesměrování" msgid "Zones" msgstr "Zóny" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "přijmout" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "libovolný" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -748,19 +1054,32 @@ msgstr "libovolná IP routeru" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "libovolná zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "nesledovat" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -787,7 +1106,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -811,6 +1130,18 @@ msgstr "" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Vynutit sledování připojení" @@ -820,9 +1151,6 @@ msgstr "" #~ msgid "Add and edit..." #~ msgstr "Přidat a upravit" -#~ msgid "Do not rewrite" -#~ msgstr "Nepřepisovat" - #~ msgid "External zone" #~ msgstr "Vnější zóna" @@ -862,9 +1190,6 @@ msgstr "" #~ msgid "(Unnamed SNAT)" #~ msgstr "(Nepojmenovaný SNAT)" -#~ msgid "Destination IP address" -#~ msgstr "Cílová IP adresa" - # nebo mimo zóny? #~ msgid "Inter-Zone Forwarding" #~ msgstr "Přesměrování mezi zónami" diff --git a/applications/luci-app-firewall/po/de/firewall.po b/applications/luci-app-firewall/po/de/firewall.po index 4da5dcb135..f87f51bae7 100644 --- a/applications/luci-app-firewall/po/de/firewall.po +++ b/applications/luci-app-firewall/po/de/firewall.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2019-12-19 19:39+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2020-01-16 13:32+0000\n" +"Last-Translator: Jo <jo@mein.io>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfirewall/de/>\n" "Language: de\n" @@ -12,9 +12,9 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s in %s" @@ -22,7 +22,7 @@ msgstr "%s in %s" msgid "%s%s with %s" msgstr "%s%s mit %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s in %s" @@ -38,6 +38,14 @@ msgstr "<var>%d</var> Pkte. pro <var>%s</var>, Häufung <var>%d</var> Pkte." msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> und limitieren auf %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "Es muss eine IP-Adresse zum Umschreiben angegeben werden!" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "ACCEPT - Umschreiben von IP-Adressen deaktivieren" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Erlaubte Weiterleitung" @@ -50,8 +58,9 @@ msgstr "Eingang akzeptieren" msgid "Accept output" msgstr "Ausgang akzeptieren" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Aktion" @@ -74,8 +83,9 @@ msgstr "" "Zonenquellenverkehr, z.B. <code>-p tcp --sport 443</code>, um nur " "eingehenden HTTPS-Verkehr übereinstimmen zu lassen." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" @@ -92,15 +102,33 @@ msgstr "Erlaube Weiterleitung von <em>Quellzone</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Erlaube Weiterleitung zu <em>Zielzone</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Beliebig" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Beliebig" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Automatische Helferzuordnung" @@ -136,7 +164,7 @@ msgstr "Abgedeckte Netzwerke" msgid "Covered subnets" msgstr "Abgedeckte Subnetze" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Benutzerdefinierte Regeln" @@ -151,18 +179,39 @@ msgstr "" "Befehle werden mit jedem Firewall-Neustart abgearbeitet, direkt nach dem " "Laden der Basisregeln." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Ziel IP-Adresse" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Zieladresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Zielport" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Ziel-Zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Weiterleiten verwerfen" @@ -184,6 +233,10 @@ msgstr "" "Conntrack-Status <em>invalid</em> abzulehnen. Dies kann bei komplexen " "asymmetrischen Routen erforderlich sein." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Nicht umschreiben" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Weiterleitung nicht verfolgen" @@ -200,12 +253,13 @@ msgstr "Ausgang nicht verfolgen" msgid "Drop invalid packets" msgstr "Ungültige Pakete verwerfen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Aktivieren" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "NAT-Loopback aktivieren" @@ -217,6 +271,10 @@ msgstr "Schutz vor SYN-flood-Attacken" msgid "Enable logging on this zone" msgstr "Protokollierung innerhalb der Zone aktivieren" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "Erwarte: %s" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Experimentelle Funktion. Nicht vollständig kompatibel mit QoS/SQM." @@ -226,16 +284,17 @@ msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" "Wählt explizit zulässige Verbindungs-Tracking-Helfer für den Zonenverkehr aus" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Externe IP-Adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Externer Port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Zusätzliche Argumente" @@ -259,11 +318,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Benutzerdefinierte Regeln" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "Firewall - NAT Regeln" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Portweiterleitungen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Traffic-Regeln" @@ -276,11 +339,12 @@ msgstr "Firewall - Zoneneinstellungen" msgid "Forward" msgstr "Weitergeleitet" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Weiterleiten an" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Freitag" @@ -311,8 +375,13 @@ msgstr "Von %s auf <var>diesem Gerät</var> mit Quelle %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "Von %s auf <var>dieses Gerät</var> mit Quelle %s und %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "Von %{ipaddr?:beliebigen Hosts} %{port?mit Quell-%{port}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -340,12 +409,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 und IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "nur IPv4" @@ -354,32 +423,60 @@ msgstr "nur IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "nur IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Eingehend" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Interne IP-Adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Interner Port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Interne Zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Protokollnachrichten limitieren" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -388,6 +485,12 @@ msgstr "MAC" msgid "MACs" msgstr "MACs" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" +"MASQUERADE - Automatisch auf IP-Adresse der ausgehenden Schnittstelle " +"umschreiben" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS Korrektur" @@ -396,16 +499,60 @@ msgstr "MSS Korrektur" msgid "Masquerading" msgstr "NAT aktivieren" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Filter" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" +"Selektiere %{protocol?%{family}-%{protocol} Verkehr:jeglichen %{family}-" +"Verkehr} %{mark?mit Firewall-Markierung %{mark}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Nach ICMP-Typ filtern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "Selektiert an die angegebene IP-Adresse gerichteten Verkehr." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" +"Selektiert an den angegeben Port oder Port-Bereich gerichteten Verkehr." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" +"Selektiert weitergeleiteten Verkehr von dieser IP oder diesem IP-Bereich." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" +"Selektiert weitergeleiteten Verkehr vom angegebenem Quellport oder " +"Portbereich." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -413,17 +560,63 @@ msgstr "" "Eingehende Verbindungen filtern welche an den angegebenen Port oder " "Portbereich auf dem lokalen Gerät gerichtet sind" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "Erfasse Markierung" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" +"Selektiert Verkehr mit einer spezifischen Firewall-Markierung oder einem " +"Bereich von Markierungen." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" +"Selektiert weitergeleiteten Verkehr welcher die angegebene " +"Netzwerkschnittstelle benutzt." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Montag" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Monatstage" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "NAT-Regeln" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" +"NAT-Regeln erlauben eine detaillierte Kontrolle über die verwendete Quell-IP-" +"Adresse für ausgehenden oder weitergeleiteten Verkehr." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Name" @@ -432,33 +625,43 @@ msgstr "Name" msgid "Network" msgstr "Netzwerk" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." -msgstr "Selektiere nur Traffic der an die angegebene IP-Adresse gerichtet ist." +msgstr "Selektiert nur Traffic der an die angegebene IP-Adresse gerichtet ist." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." -msgstr "Selektiere nur Traffic von den angegebenen MAC-Adressen." +msgstr "Selektiert nur Traffic von den angegebenen MAC-Adressen." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." -msgstr "Selektiere nur Traffic vom angebenem Quell-IP-Adressbereich." +msgstr "Selektiert nur Traffic vom angebenem Quell-IP-Adressbereich." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" "Nur eingehenden Datenverkehr, der vom angegebenen Quellport oder Portbereich " -"des Client-Host stammt, zuordnen" +"des Client-Host stammt, selektieren" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "Ausgehende Schnittstelle" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "Ausgehende Zone" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Ausgehend" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "Gibt zusätzliche Kommandozeilenargumente an iptables weiter. Mit Vorsicht " @@ -479,12 +682,12 @@ msgstr "" "führen können, dass der Firewall-Regelsatz außer Funktion gesetzt wird und " "alle Dienste vollständig offengelegt werden." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Portweiterleitungen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -492,19 +695,20 @@ msgstr "" "Portweiterleitungen ermöglichen es entfernten Rechnern im Internet auf " "bestimmte Computer oder Dienste im lokalen LAN zuzugreifen." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Gefilterte Verbindungen an den angegeben Port auf dem internen Host " "weiterleiten" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Gefilterte Verbindungen an den angegeben internen Host weiterleiten" @@ -533,67 +737,131 @@ msgstr "NAT auf die angegebenen Ziel-Subnetze beschränken" msgid "Restrict Masquerading to given source subnets" msgstr "NAT auf die angegebenen Quell-Subnetze beschränken" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Beschränke auf Adressfamilie" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "IP-Adresse umschreiben" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "Selektierten Verkehr auf die angegebene Quell-IP-Adresse umschreiben." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" +"Selektierten Verkehr auf den angegebenen Quell-Port bzw. Port-Bereich " +"umschreiben." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "Port umschreiben" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "Umschreiben auf…" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "Umschreiben auf %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "Umschreiben auf ausgehende Schnittstellen-IP" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Routing/NAT-Beschleunigung" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "SNAT - Umschreiben auf spezifische Quell-IP oder Port" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Samstag" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" -msgstr "Softwarebasierte Auslagerung für Routing/NAT" +msgstr "Softwarebasierte Auslagerung von Routing/NAT" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:60 msgid "Software flow offloading" msgstr "Beschleunigte Flusskontrolle" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Quell-IP-Adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Quell-MAC-Adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Quelladresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Quellport" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Quell-Zone" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Startdatum (JJJJ-MM-TT)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Startzeit (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Enddatum (JJJJ-MM-TT)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Stoppzeit (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Sonntag" @@ -639,15 +907,18 @@ msgstr "" "dieser Zone zu. <em>Covered networks</em> definiert welche der verfügbaren " "Netzwerke zu dieser Zone gehören." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Donnerstag" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Zeitbeschränkungen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Zeit ist UTC" @@ -667,12 +938,24 @@ msgstr "Zu %s auf <var>diesem Gerät</var>" msgid "To %s, %s in %s" msgstr "Zu %s, %s in %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" +"Zu %{ipaddr?:beliebigem Host} %{port?an %{port}} %{zone?über Zone %{zone}} " +"%{device?ausgehende Schnittstelle %{device}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Traffic-Regeln" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -682,7 +965,8 @@ msgstr "" "zum Beispiel um Traffic zwischen bestimmten Rechnern zu unterbinden oder um " "WAN-Ports auf dem Router zu öffnen." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Dienstag" @@ -690,13 +974,23 @@ msgstr "Dienstag" msgid "Unable to save contents: %s" msgstr "Inhalt kann nicht gespeichert werden: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "Unbenannte NAT-Regel" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Unbenannte Portweiterleitung" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Unbennante Regel" @@ -704,6 +998,14 @@ msgstr "Unbennante Regel" msgid "Unnamed zone" msgstr "Unbenannte Zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -720,6 +1022,10 @@ msgstr "" "Diese Option verwenden, um den Zonenverkehr nach Quell- oder Zielsubnetz " "anstelle von Netzwerken oder Geräten zu klassifizieren." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Über %s" @@ -728,14 +1034,24 @@ msgstr "Über %s" msgid "Via %s at %s" msgstr "Über %s an %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Mittwoch" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Wochentage" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zone ⇒ Weiterleitungen" @@ -746,28 +1062,36 @@ msgstr "Zonen" # Die richtige Übersetzung von ACCEPT im Firewallkontext ist nicht "Annehmen" sondern "Zulassen". Man kann ja keinen # ausgehenden Traffic annehmen. -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "zulassen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "beliebig" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -781,19 +1105,32 @@ msgstr "beliebige Router-IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "beliebige Zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "Tag" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "nicht umschreiben" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "nicht verfolgen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -820,7 +1157,7 @@ msgstr "Port" msgid "ports" msgstr "Ports" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -844,6 +1181,18 @@ msgstr "Typ" msgid "types" msgstr "Typen" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "gültige Firewall-Markierung" + #~ msgid "Force connection tracking" #~ msgstr "Connectiontracking erzwingen" @@ -865,9 +1214,6 @@ msgstr "Typen" #~ msgid "Add and edit..." #~ msgstr "Hinzufügen und bearbeiten..." -#~ msgid "Do not rewrite" -#~ msgstr "Nicht umschreiben" - #~ msgid "External zone" #~ msgstr "Externe Zone" @@ -907,9 +1253,6 @@ msgstr "Typen" #~ msgid "(Unnamed SNAT)" #~ msgstr "(Unbennanter SNAT-Eintrag)" -#~ msgid "Destination IP address" -#~ msgstr "Ziel IP-Adresse" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Weiterleitungen zwischen Zonen" diff --git a/applications/luci-app-firewall/po/el/firewall.po b/applications/luci-app-firewall/po/el/firewall.po index 5505fc973b..8f27b6f9cb 100644 --- a/applications/luci-app-firewall/po/el/firewall.po +++ b/applications/luci-app-firewall/po/el/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -22,7 +22,7 @@ msgstr "" msgid "%s%s with %s" msgstr "%s%s με %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Ενέργεια" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Ρυθμίσεις για προχωρημένους" @@ -86,15 +96,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Οποιοδήποτε" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -128,7 +156,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Προσαρμοσμένοι Κανόνες" @@ -139,18 +167,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Διεύθυνση IP προορισμού" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Διεύθυνση προορισμού" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Θύρα προορισμού" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Ζώνη προορισμού" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -169,6 +218,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -185,12 +238,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Αγνόηση μη-έγκυρων πακετών" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Ενεργοποίηση" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -203,6 +257,10 @@ msgstr "Προστασία SYN-flood" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -211,16 +269,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Εξωτερική διεύθυνση IP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Εξωτερική θύρα" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Επιπλέον παράμετροι" @@ -244,11 +303,15 @@ msgstr "Τείχος προστασίας" msgid "Firewall - Custom Rules" msgstr "Τείχος προστασίας - Προσαρμοσμένοι Κανόνες" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Τείχος προστασίας - Προώθηση Θυρών" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Τείχος προστασίας - Κανόνες Κίνησεις" @@ -261,11 +324,12 @@ msgstr "Τείχος προστασίας - Ρυθμίσεις Ζώνης" msgid "Forward" msgstr "Προώθηση" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -296,8 +360,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -325,12 +394,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 και IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Μόνο IPv4" @@ -339,34 +408,62 @@ msgstr "Μόνο IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Μόνο IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Είσοδος" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 #, fuzzy msgid "Internal IP address" msgstr "Εσωτερική διεύθυνση" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 #, fuzzy msgid "Internal port" msgstr "Εξωτερική θύρα" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Εσωτερική ζώνη" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Περιορισμός καταγραφών συστήματος" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -375,6 +472,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 #, fuzzy msgid "MSS clamping" @@ -384,32 +485,110 @@ msgstr "Περιορισμός MSS" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Όνομα" @@ -418,31 +597,41 @@ msgstr "Όνομα" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Έξοδος" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -455,28 +644,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Προώθηση Θυρών" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Πρωτόκολλο" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -504,19 +694,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -525,49 +758,68 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 #, fuzzy msgid "Source IP address" msgstr "Διεύθυνση MAC πηγής" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 #, fuzzy msgid "Source address" msgstr "Διεύθυνση MAC πηγής" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Θύρα πηγής" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 #, fuzzy msgid "Source zone" msgstr "Θύρα πηγής" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -599,15 +851,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -627,19 +882,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -647,13 +913,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -661,6 +937,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -673,6 +957,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -681,14 +969,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -697,28 +995,36 @@ msgstr "" msgid "Zones" msgstr "Ζώνες" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "αποδοχή" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -732,19 +1038,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -771,7 +1090,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -795,6 +1114,18 @@ msgstr "" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Επιβολή παρακολούθησης σύνδεσης" @@ -806,6 +1137,3 @@ msgstr "" #~ msgid "Other..." #~ msgstr "Άλλο..." - -#~ msgid "Destination IP address" -#~ msgstr "Διεύθυνση IP προορισμού" diff --git a/applications/luci-app-firewall/po/en/firewall.po b/applications/luci-app-firewall/po/en/firewall.po index 3236f22c52..680a925028 100644 --- a/applications/luci-app-firewall/po/en/firewall.po +++ b/applications/luci-app-firewall/po/en/firewall.po @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -19,7 +19,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -35,6 +35,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -47,8 +55,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Action" @@ -65,8 +74,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -83,15 +93,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -125,7 +153,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -136,18 +164,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Destination address" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Destination port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Destination zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -166,6 +215,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -182,12 +235,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Drop invalid packets" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -199,6 +253,10 @@ msgstr "Enable SYN-flood protection" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -207,16 +265,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "External port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -244,11 +303,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -261,11 +324,12 @@ msgstr "" msgid "Forward" msgstr "Forward" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -296,8 +360,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -325,12 +394,12 @@ msgid "IPv4" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -339,32 +408,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Input" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Internal IP address" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Internal port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "" @@ -373,6 +470,10 @@ msgstr "" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS clamping" @@ -381,16 +482,54 @@ msgstr "MSS clamping" msgid "Masquerading" msgstr "Masquerading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -398,17 +537,57 @@ msgstr "" "Match incoming traffic directed at the given destination port or port range " "on this host" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Name" @@ -417,31 +596,41 @@ msgstr "Name" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Output" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -454,29 +643,30 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocol" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Redirect matched incoming traffic to the given port on the internal host" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Redirect matched incoming traffic to the specified internal host" @@ -504,19 +694,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -555,46 +788,65 @@ msgstr "" # msgid "Protocol" # msgstr "" # -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Source IP address" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Source address" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Source port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Source zone" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -626,15 +878,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -654,19 +909,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -674,13 +940,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -688,6 +964,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -700,6 +984,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -708,14 +996,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -724,28 +1022,36 @@ msgstr "" msgid "Zones" msgstr "Zones" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "accept" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "any" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -759,19 +1065,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -798,7 +1117,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -821,3 +1140,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/es/firewall.po b/applications/luci-app-firewall/po/es/firewall.po index edc1b931da..2dcef8da82 100644 --- a/applications/luci-app-firewall/po/es/firewall.po +++ b/applications/luci-app-firewall/po/es/firewall.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2019-11-25 13:56+0000\n" +"PO-Revision-Date: 2020-01-16 19:12+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfirewall/es/>\n" @@ -12,9 +12,9 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 3.10.2-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s en %s" @@ -22,7 +22,7 @@ msgstr "%s en %s" msgid "%s%s with %s" msgstr "%s%s con %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s en %s" @@ -39,6 +39,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> y limitar a %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "¡Se debe especificar una IP de reescritura!" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "ACEPTAR - Desactivar reescritura de direcciones" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Aceptar reenvío" @@ -51,8 +59,9 @@ msgstr "Aceptar entrada" msgid "Accept output" msgstr "Aceptar salida" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Acción" @@ -75,8 +84,9 @@ msgstr "" "tráfico de origen de zona, p.e. <code>-p tcp --sport 443</code> para que " "solo coincida con el tráfico HTTPS entrante." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Configuración avanzada" @@ -93,15 +103,35 @@ msgstr "Permitir reenvío desde <em>zonas de origen</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Permitir reenvío a <em>zonas de destino</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Cualquiera" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Cualquier día" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" +"Asigne el asistente de seguimiento de conexión especificado al tráfico " +"coincidente." + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Asignación automática de ayuda" @@ -137,7 +167,7 @@ msgstr "Redes cubiertas" msgid "Covered subnets" msgstr "Subredes cubiertas" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Reglas personalizadas" @@ -152,18 +182,39 @@ msgstr "" "cualquier reinicio del FIrewall, justo tras haber cargado el conjunto de " "reglas predeterminadas." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Dirección IP destino" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Dirección de destino" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Puerto de destino" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zona de destino" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "Nombre del dispositivo" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Descartar reenvío" @@ -185,6 +236,10 @@ msgstr "" "estado conntrack <em>inválido</em>. Esto puede ser necesario para " "configuraciones complejas de rutas asimétricas." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "No reescribir" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "No seguir reenvío" @@ -201,12 +256,13 @@ msgstr "No seguir salida" msgid "Drop invalid packets" msgstr "Descartar paquetes inválidos" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Activar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Activar bucle NAT" @@ -218,6 +274,10 @@ msgstr "Activar protección contra inundaciones SYN" msgid "Enable logging on this zone" msgstr "Activar registro en esta zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "Esperando: %s" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Característica experimental. No es totalmente compatible con QoS/SQM." @@ -228,16 +288,17 @@ msgstr "" "Elige explícitamente los ayudantes de seguimiento de conexión permitidos " "para el tráfico de zona" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Dirección IP externa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Puerto externo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Argumentos extra" @@ -261,11 +322,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Reglas personalizadas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "Firewall - Reglas de NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Reenvío de puertos" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Reglas de tráfico" @@ -278,11 +343,12 @@ msgstr "Firewall - Configuración de la zona" msgid "Forward" msgstr "Reenviar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Reenviar a" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Viernes" @@ -313,8 +379,13 @@ msgstr "Desde %s en <var>este dispositivo</var> con la fuente %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "De %s en <var>este dispositivo</var> con la fuente %s y %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "Desde %{ipaddr?:cualquier host} %{puerto?con origen %{puerto}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -342,12 +413,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 e IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Sólo IPv4" @@ -356,32 +427,60 @@ msgstr "Sólo IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Sólo IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "Dispositivo de entrada" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Entrada" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Dirección IP interna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Puerto interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zona interna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limitar registro de mensajes" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "IP de origen de bucle invertido" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -390,6 +489,10 @@ msgstr "MAC" msgid "MACs" msgstr "MAC" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "MASQUERADE - Reescribe automáticamente a la interfaz IP saliente" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Fijado de MSS" @@ -398,16 +501,60 @@ msgstr "Fijado de MSS" msgid "Masquerading" msgstr "Enmascaramiento" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Coincidir" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" +"Coincidir %{protocolo?%{familia} %{protocolo} tráfico:cualquiera %{familia} " +"tráfico} %{marco?con marco de firewall %{marco}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Coincidir con tipo ICMP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "Dispositivo de coincidencia" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "Haga coincidir el tráfico reenviado dirigido a la dirección IP dada." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" +"Haga coincidir el tráfico reenviado dirigido al puerto de destino o rango de " +"puertos dados." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "Haga coincidir el tráfico reenviado desde esta IP o rango." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" +"Haga coincidir el tráfico reenviado que se origina en el puerto fuente o " +"rango de puertos dados." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "Ayudante de partido" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -415,17 +562,65 @@ msgstr "" "Coincidir con tráfico de entrada dirigido al puerto o rango de puertos " "destino en este host" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "Marca de partido" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" +"Haga coincidir el tráfico con el ayudante de seguimiento de conexión " +"especificado." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" +"Coincide con una marca de firewall específica o un rango de marcas " +"diferentes." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" +"Coincide con el tráfico reenviado utilizando el dispositivo de red saliente " +"especificado." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Lunes" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Días del mes" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "Reglas NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" +"Las reglas de NAT permiten un control detallado sobre la IP de origen para " +"el tráfico saliente o reenviado." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nombre" @@ -434,19 +629,19 @@ msgstr "Nombre" msgid "Network" msgstr "Red" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Coincidir sólo con tráfico de entrada a esta dirección IP." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Coincidir sólo con tráfico de entrada desde estas MACs." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Coincidir sólo con tráfico de entrada desde esta IP o rango." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -454,15 +649,25 @@ msgstr "" "Solo coincida con el tráfico entrante que se origina desde el puerto de " "origen o el rango de puertos en el host del cliente" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "Dispositivo saliente" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "Zona de salida" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Salida" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Pasa argumentos adicionales a iptables. ¡Utilícelo con cuidado!" +msgstr "Ingrese argumentos adicionales a iptables. ¡Utilícelo con cuidado!" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:236 msgid "" @@ -479,12 +684,12 @@ msgstr "" "conjunto de reglas del firewall se rompa, exponiendo completamente todos los " "servicios." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Reenvío de puertos" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -492,19 +697,20 @@ msgstr "" "El reenvío de puertos permite a ordenadores remotos en internet conectar a " "un ordenador o servicio específico en la LAN privada." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocolo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Redirigir el tráfico de entrada que coincida al puerto dado en el host " "interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" "Redirigir el tráfico de entrada que coincida al host interno especificado" @@ -534,19 +740,66 @@ msgstr "Restringir enmascaramiento a las subredes destino" msgid "Restrict Masquerading to given source subnets" msgstr "Restringir enmascaramiento a las subredes origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Restringir a la familia de direcciones" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "Reescribir dirección IP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" +"Reescribe el tráfico coincidente a la dirección IP de origen especificada." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" +"Reescribe el tráfico coincidente al puerto de origen o rango de puertos " +"especificados." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "Reescribir puerto" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "Reescribe a" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" +"Reescribe a %{ipaddr?%{puerto?%{ipaddr}, %{puerto}:%{ipaddr}}:%{puerto}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "Reescribir a la IP del dispositivo saliente" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Enrutamiento/NAT Offloading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "SNAT - Reescribe a una fuente específica IP o puerto" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sábado" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Descarga basada en software para enrutamiento/NAT" @@ -555,46 +808,69 @@ msgstr "Descarga basada en software para enrutamiento/NAT" msgid "Software flow offloading" msgstr "Descarga de flujo por software" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Dirección IP de origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Dirección MAC de origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Dirección de origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Puerto de origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zona de origen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" +"Especifica si se debe vincular esta regla de tráfico a un dispositivo de red " +"entrante o saliente específico." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" +"Especifica si se debe usar la dirección IP externa o interna para el tráfico " +"reflejado." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Fecha de inicio (aaaa-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Hora de inicio (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Fecha de finalización (aaaa-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Hora de finalización (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Domingo" @@ -639,15 +915,18 @@ msgstr "" "<em>Redes cubiertas</em> especifican qué redes disponibles son miembros de " "esta zona." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Jueves" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Restricciones de tiempo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Tiempo en UTC" @@ -667,12 +946,24 @@ msgstr "A %s por <var>este dispositivo</var>" msgid "To %s, %s in %s" msgstr "A %s, %s en %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" +"A %{ipaddr?:cualquier destino} %{puerto?a %{puerto}} %{zona?via zona " +"%{zona}} %{dispositivo?dispositivo de salida %{dispositivo}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "Ayudante de seguimiento" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Reglas de tráfico" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -682,7 +973,8 @@ msgstr "" "diferentes zonas, por ejemplo, para rechazar el tráfico entre ciertos hosts " "o para abrir puertos WAN en el enrutador." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Martes" @@ -690,13 +982,23 @@ msgstr "Martes" msgid "Unable to save contents: %s" msgstr "No se puede guardar el contenido: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "Ayudante de Conntrack desconocido o no instalado \"%s\"" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "NAT sin nombre" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Reenvío sin nombre" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Regla sin nombre" @@ -704,6 +1006,14 @@ msgstr "Regla sin nombre" msgid "Unnamed zone" msgstr "Zona sin nombre" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "Usar dirección IP externa" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "Usar dirección IP interna" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -720,6 +1030,10 @@ msgstr "" "Use esta opción para clasificar el tráfico de zona por subred de origen o " "destino en lugar de redes o dispositivos." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Vía %s" @@ -728,14 +1042,24 @@ msgstr "Vía %s" msgid "Via %s at %s" msgstr "Vía %s a %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Miércoles" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Días de la semana" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zona ⇒ Reenvíos" @@ -744,28 +1068,36 @@ msgstr "Zona ⇒ Reenvíos" msgid "Zones" msgstr "Zonas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "Aceptar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "cualquiera" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -779,19 +1111,32 @@ msgstr "cualquier router IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "cualquier zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "asignar ayudante de Conntrack" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "Día" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "no reescribir" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "No seguir" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -818,7 +1163,7 @@ msgstr "puerto" msgid "ports" msgstr "puertos" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -842,6 +1187,18 @@ msgstr "Tipo" msgid "types" msgstr "Tipos" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "sin especificar" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "marca de firewall válida" + #~ msgid "Force connection tracking" #~ msgstr "Forzar seguimiento de conexión" @@ -870,9 +1227,6 @@ msgstr "Tipos" #~ msgid "Add and edit..." #~ msgstr "Añadir y editar..." -#~ msgid "Do not rewrite" -#~ msgstr "No reescribir" - #~ msgid "External zone" #~ msgstr "Zona externa" @@ -915,9 +1269,6 @@ msgstr "Tipos" #~ msgid "(Unnamed SNAT)" #~ msgstr "(SNAT sin nombre)" -#~ msgid "Destination IP address" -#~ msgstr "Dirección IP destino" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Reenvío entre zonas" diff --git a/applications/luci-app-firewall/po/fr/firewall.po b/applications/luci-app-firewall/po/fr/firewall.po index f9307581af..ca2494b414 100644 --- a/applications/luci-app-firewall/po/fr/firewall.po +++ b/applications/luci-app-firewall/po/fr/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.10.1\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s dans %s" @@ -22,7 +22,7 @@ msgstr "%s dans %s" msgid "%s%s with %s" msgstr "%s%s avec %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s dans %s" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "Accepter l'entrée" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Action" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Paramètres avancés" @@ -86,15 +96,33 @@ msgstr "Permettre la transmission des <em>zones source</em> :" msgid "Allow forward to <em>destination zones</em>:" msgstr "Permettre la transmission vers les <em>zones destination</em> :" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "N'importe lequel" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "N'importe quel jour" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -130,7 +158,7 @@ msgstr "Réseaux couverts" msgid "Covered subnets" msgstr "Sous-réseaux couverts" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Régles spécifiques" @@ -145,18 +173,39 @@ msgstr "" "feu. Les commandes sont exécutées après chaque redémarrage du pare-feu, " "juste après le chargement de l'ensemble de règles par défaut." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Adresse IP de destination" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Adresse de destination" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Port de destination" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zone de destination" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -175,6 +224,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -191,12 +244,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Supprimer les paquets invalides" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Activer" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Activer le NAT sur la boucle-locale" @@ -208,6 +262,10 @@ msgstr "Activer la protection contre le SYN-flood" msgid "Enable logging on this zone" msgstr "Activer les traces (logs) sur cette zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -216,16 +274,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Adresse IP externe" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Port externe" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Arguments supplémentaires" @@ -253,11 +312,15 @@ msgstr "Pare-feu" msgid "Firewall - Custom Rules" msgstr "Pare-feu - Règles personnalisées" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Pare-feu - Redirections de ports" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Pare-feu - Règles de trafic" @@ -270,11 +333,12 @@ msgstr "Pare-feu - Configuration des zones" msgid "Forward" msgstr "Transférer" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Transférer à" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Vendredi" @@ -305,8 +369,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -334,12 +403,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 et IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "IPv4 seulement" @@ -348,32 +417,60 @@ msgstr "IPv4 seulement" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "IPv6 seulement" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Entrée" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Adresse IP interne" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Port interne" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zone interne" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limiter les messages de journalisation" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -382,6 +479,10 @@ msgstr "MAC" msgid "MACs" msgstr "MACs" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Contrainte du MSS" @@ -390,16 +491,54 @@ msgstr "Contrainte du MSS" msgid "Masquerading" msgstr "Masquage" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Type ICMP correspondant" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -407,17 +546,57 @@ msgstr "" "Prendre en compte le trafic dirigé vers le port de destination donné (ou la " "gamme de ports) sur cet hôte" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Lundi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nom" @@ -426,31 +605,41 @@ msgstr "Nom" msgid "Network" msgstr "Réseau" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Montrer seulement le trafic entrant provenant de ces adresses MAC." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Sortie" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "Passe des arguments supplémentaires aux tables d'adresses IP. A utiliser " @@ -465,12 +654,12 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Redirections de port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -478,19 +667,20 @@ msgstr "" "La redirection de port permet aux ordinateurs distants sur Internet, de se " "connecter à un ordinateur ou service spécifié dans le réseau local privé." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocole" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Rediriger le trafic entrant correspondant vers le port donné sur l'hôte " "interne" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Rediriger le trafic entrant correspondant vers l'hôte interne spécifié" @@ -522,19 +712,62 @@ msgstr "" "Restreindre la substitution d'adresses (Masquerade) à ces sous-réseaux " "sources" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Restreindre à cette famille d'adresses" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Samedi" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -573,46 +806,65 @@ msgstr "" # msgid "Protocol" # msgstr "" # -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Adresse IP source" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Adresse MAC source" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Adresse source" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Port source" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zone source" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Dimanche" @@ -658,15 +910,18 @@ msgstr "" "cette zone. Les <em>réseaux couverts</em> indiquent quels réseaux " "disponibles sont membre de cette zone." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Jeudi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Heure en UTC" @@ -686,12 +941,22 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Règles de trafic" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -701,7 +966,8 @@ msgstr "" "entre différentes zones, par exemple pour rejeter le trafic entre certains " "hôtes ou pour ouvrir des ports WAN sur le routeur." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Mardi" @@ -709,13 +975,23 @@ msgstr "Mardi" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -723,6 +999,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -737,6 +1021,10 @@ msgstr "" "Utilisez cette option pour classer le trafic de zone par sous-réseau source " "ou de destination au lieu de réseaux ou de périphériques." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -745,14 +1033,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Mercredi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zone ⇒ Transmissions" @@ -761,28 +1059,36 @@ msgstr "Zone ⇒ Transmissions" msgid "Zones" msgstr "Zones" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "accepter" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "tous" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -796,19 +1102,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "n'importe quelle zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "journée" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -835,7 +1154,7 @@ msgstr "port" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -859,6 +1178,18 @@ msgstr "type" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Forcer le suivi des connexions" @@ -886,9 +1217,6 @@ msgstr "" #~ msgid "Other..." #~ msgstr "Autre..." -#~ msgid "Destination IP address" -#~ msgstr "Adresse IP de destination" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Transmission entre zones" diff --git a/applications/luci-app-firewall/po/he/firewall.po b/applications/luci-app-firewall/po/he/firewall.po index 6ffb356bea..aad6172eae 100644 --- a/applications/luci-app-firewall/po/he/firewall.po +++ b/applications/luci-app-firewall/po/he/firewall.po @@ -8,7 +8,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -16,7 +16,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -32,6 +32,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -44,8 +52,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "" @@ -62,8 +71,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -80,15 +90,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -122,7 +150,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -133,18 +161,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -163,6 +212,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -179,12 +232,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -196,6 +250,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -204,16 +262,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -237,11 +296,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -254,11 +317,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -289,8 +353,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -318,12 +387,12 @@ msgid "IPv4" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -332,32 +401,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "" @@ -366,6 +463,10 @@ msgstr "" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -374,32 +475,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -408,31 +587,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -445,28 +634,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -494,19 +684,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -515,46 +748,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -584,15 +836,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -612,19 +867,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -632,13 +898,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -646,6 +922,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -658,6 +942,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -666,14 +954,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -682,28 +980,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -717,19 +1023,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -756,7 +1075,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -779,3 +1098,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/hi/firewall.po b/applications/luci-app-firewall/po/hi/firewall.po index 4025062272..89570e9d74 100644 --- a/applications/luci-app-firewall/po/hi/firewall.po +++ b/applications/luci-app-firewall/po/hi/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -22,7 +22,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -86,15 +96,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -128,7 +156,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -139,18 +167,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -169,6 +218,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -185,12 +238,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -202,6 +256,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -210,16 +268,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -247,11 +306,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -264,11 +327,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -299,8 +363,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -328,12 +397,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -342,32 +411,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -376,6 +473,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -384,32 +485,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -418,31 +597,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -455,28 +644,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -504,19 +694,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -555,46 +788,65 @@ msgstr "" # msgid "Protocol" # msgstr "" # -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -624,15 +876,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -652,19 +907,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -672,13 +938,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -686,6 +962,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -698,6 +982,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -706,14 +994,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -722,28 +1020,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -757,19 +1063,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -796,7 +1115,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -819,3 +1138,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/hu/firewall.po b/applications/luci-app-firewall/po/hu/firewall.po index d74f2f45cd..e7031d9985 100644 --- a/applications/luci-app-firewall/po/hu/firewall.po +++ b/applications/luci-app-firewall/po/hu/firewall.po @@ -12,7 +12,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s ebben: %s" @@ -20,7 +20,7 @@ msgstr "%s ebben: %s" msgid "%s%s with %s" msgstr "%s%s ezzel: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s ebben: %s" @@ -36,6 +36,14 @@ msgstr "<var>%d</var> csomag / <var>%s</var>, löket <var>%d</var> csomag" msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> és korlátozás erre: %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Továbbítás elfogadása" @@ -48,8 +56,9 @@ msgstr "Bemenet elfogadása" msgid "Accept output" msgstr "Kimenet elfogadása" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Művelet" @@ -72,8 +81,9 @@ msgstr "" "besorolásához, például <code>-p tcp --sport 443</code> csak a bejövő HTTPS " "forgalom illesztéséhez." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Speciális beállítások" @@ -90,15 +100,33 @@ msgstr "Továbbítás engedélyezése a <em>forrászónákból</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Továbbítás engedélyezése ezekbe a <em>célzónákba</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Bármelyik" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Bármely nap" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Automatikus segítő hozzárendelés" @@ -134,7 +162,7 @@ msgstr "Lefedett hálózatok" msgid "Covered subnets" msgstr "Lefedett alhálózatok" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Egyéni szabályok" @@ -149,18 +177,39 @@ msgstr "" "parancsok minden tűzfal-újraindítás után végrehajtásra kerülnek, közvetlenül " "az alapértelmezett szabálykészletek betöltődése után." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Cél IP-cím" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Célcím" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Célport" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Célzóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Továbbítás elvetése" @@ -181,6 +230,10 @@ msgstr "" "Ne telepítsen további szabályokat az <em>érvénytelen</em> kapcsolatkövető " "állapottal rendelkező továbbított forgalom visszautasításához." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Ne írja felül" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Ne kövesse a továbbítást" @@ -197,12 +250,13 @@ msgstr "Ne kövesse a kimenetet" msgid "Drop invalid packets" msgstr "Érvénytelen csomagok eldobása" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Engedélyezés" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "NAT visszacsatolás engedélyezése" @@ -214,6 +268,10 @@ msgstr "SYN-elárasztás elleni védelem engedélyezése" msgid "Enable logging on this zone" msgstr "Naplózás engedélyezése ezen a zónán" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Kísérleti funkció. Nem teljesen kompatibilis a QoS/SQM használatával." @@ -224,16 +282,17 @@ msgstr "" "Határozottan kiválasztja az engedélyezett kapcsolatkövető segítőket a " "zónaforgalomhoz" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Külső IP-cím" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Külső port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "További argumentumok" @@ -257,11 +316,15 @@ msgstr "Tűzfal" msgid "Firewall - Custom Rules" msgstr "Tűzfal – egyéni szabályok" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Tűzfal – porttovábbítások" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Tűzfal – forgalmi szabályok" @@ -274,11 +337,12 @@ msgstr "Tűzfal – Zóna beállításai" msgid "Forward" msgstr "Továbbítás" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Továbbítás ide" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Péntek" @@ -310,8 +374,13 @@ msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" "Ettől: %s, <var>ezen az eszközön</var>, ezekkel a forrásokkal: %s és %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -339,12 +408,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 és IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Csak IPv4" @@ -353,32 +422,60 @@ msgstr "Csak IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Csak IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Bemenet" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Belső IP-cím" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Belső port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Belső zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Naplóüzenetek korlátozása" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -387,6 +484,10 @@ msgstr "MAC" msgid "MACs" msgstr "MAC-ek" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS összefogás" @@ -395,16 +496,54 @@ msgstr "MSS összefogás" msgid "Masquerading" msgstr "Álcázás" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Illesztés" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "ICMP-típus illesztése" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -412,17 +551,57 @@ msgstr "" "Az ezen a gépen lévő megadott célportra vagy porttartományra irányított " "bejövő forgalom illesztése" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Hétfő" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Hónap napjai" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Név" @@ -431,20 +610,20 @@ msgstr "Név" msgid "Network" msgstr "Hálózat" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Csak a megadott IP-címre irányított bejövő forgalom illesztése." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Csak ezekről a MAC-ekről érkező bejövő forgalom illesztése." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" "Csak erről az IP-ről vagy tartományból érkező bejövő forgalom illesztése." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -452,13 +631,23 @@ msgstr "" "Csak az ügyfélgépen lévő megadott forrásportról vagy porttartományából eredő " "bejövő forgalom illesztése" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Kimenet" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "Átadja a további argumentumokat az iptables részére. Használja " @@ -479,12 +668,12 @@ msgstr "" "tönkre tehetik a tűzfalszabálykészleteket, ezáltal teljesen feltárva az " "összes szolgáltatást." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Porttovábbítások" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -493,17 +682,18 @@ msgstr "" "személyes helyi hálózat bizonyos számítógépéhez vagy szolgáltatásához " "történő csatlakozását." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "Egyező bejövő forgalom átirányítása a belső gép megadott portjára" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Egyező bejövő forgalom átirányítása a megadott belső gépre" @@ -531,19 +721,62 @@ msgstr "Álcázás korlátozása a megadott célalhálózatokra" msgid "Restrict Masquerading to given source subnets" msgstr "Álcázás korlátozása a megadott forrás alhálózatokra" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Korlátozás címcsaládra" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Útválasztás vagy NAT kiürítés" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Szombat" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Szoftver alapú kiürítés az útválasztásnál vagy NAT-nál" @@ -552,46 +785,65 @@ msgstr "Szoftver alapú kiürítés az útválasztásnál vagy NAT-nál" msgid "Software flow offloading" msgstr "Szoftveres áramláskiürítés" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Forrás IP-cím" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Forrás MAC-cím" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Forráscím" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Forrásport" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Forrászóna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Kezdés dátuma (ÉÉÉÉ-HH-NN)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Kezdés ideje (ÓÓ.PP.MM)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Leállítás dátuma (ÉÉÉÉ-HH-NN)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Leállítás ideje (ÓÓ.PP.MM)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Vasárnap" @@ -636,15 +888,18 @@ msgstr "" "belül. A <em>lefedett hálózatok</em> adják meg, hogy mely elérhető hálózatok " "tagjai ennek a zónának." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Csütörtök" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Időkorlátozások" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Idő UTC szerint" @@ -664,12 +919,22 @@ msgstr "Ide: %s, <var>ezen az eszközön</var>" msgid "To %s, %s in %s" msgstr "Erre: %s, %s ebben: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Forgalmi szabályok" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -679,7 +944,8 @@ msgstr "" "szabályokat határozzák meg, például bizonyos gépek közötti forgalom " "visszautasításához vagy WAN portok megnyitásához az útválasztón." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Kedd" @@ -687,13 +953,23 @@ msgstr "Kedd" msgid "Unable to save contents: %s" msgstr "Nem lehet elmenteni a tartalmat: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Névtelen továbbítás" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Névtelen szabály" @@ -701,6 +977,14 @@ msgstr "Névtelen szabály" msgid "Unnamed zone" msgstr "Névtelen zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -717,6 +1001,10 @@ msgstr "" "Használja ezt a beállítást a zónaforgalom forrás- vagy célalhálózat szerint " "történő besorolásához a hálózatok vagy eszközök helyett." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Ezen keresztül: %s" @@ -725,14 +1013,24 @@ msgstr "Ezen keresztül: %s" msgid "Via %s at %s" msgstr "Ezen keresztül: %s, itt: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Szerda" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Hétköznapok" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zóna ⇒ Továbbítások" @@ -741,28 +1039,36 @@ msgstr "Zóna ⇒ Továbbítások" msgid "Zones" msgstr "Zónák" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "elfogadás" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "bármely" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -776,19 +1082,32 @@ msgstr "bármely útválasztó IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "bármely zóna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "nap" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "ne kövessen" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -815,7 +1134,7 @@ msgstr "port" msgid "ports" msgstr "portok" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -839,6 +1158,18 @@ msgstr "típus" msgid "types" msgstr "típusok" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Kapcsolat követés kényszerítése" @@ -848,9 +1179,6 @@ msgstr "típusok" #~ msgid "Add and edit..." #~ msgstr "Hozzáadás és szerkesztés..." -#~ msgid "Do not rewrite" -#~ msgstr "Ne írja felül" - #~ msgid "External zone" #~ msgstr "Külső zóna" @@ -890,9 +1218,6 @@ msgstr "típusok" #~ msgid "(Unnamed SNAT)" #~ msgstr "(Névtelen SNAT)" -#~ msgid "Destination IP address" -#~ msgstr "Cél IP-cím" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Zónák-közötti továbbítás" diff --git a/applications/luci-app-firewall/po/it/firewall.po b/applications/luci-app-firewall/po/it/firewall.po index 1dea5514d0..96cec2922b 100644 --- a/applications/luci-app-firewall/po/it/firewall.po +++ b/applications/luci-app-firewall/po/it/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10.1\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -22,7 +22,7 @@ msgstr "" msgid "%s%s with %s" msgstr "%s%s con %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> e limita a %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "Accetta input" msgid "Accept output" msgstr "Accetta output" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Azione" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Opzioni Avanzate" @@ -86,15 +96,33 @@ msgstr "Permetti routing da <em>zone di origine</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Permetti rounting a <em>zone di destinazione</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Qualsiasi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Qualsiasi giorno" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -128,7 +156,7 @@ msgstr "Reti coperte" msgid "Covered subnets" msgstr "Sottoreti coperte" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Regole Personalizzate" @@ -143,18 +171,39 @@ msgstr "" "comandi sono eseguiti dopo ogni riavvio del firewall, giusto dopo le altre " "regole che sono state caricate." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Indirizzo IP destinazione" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Indirizzo di destinazione" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Porta di destinazione" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zona di destinazione" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -173,6 +222,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Non riscrivere" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -189,12 +242,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Scarta pacchetti invalidi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Attiva" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Attiva NAT Loopback" @@ -206,6 +260,10 @@ msgstr "Attiva protezione SYN-flood" msgid "Enable logging on this zone" msgstr "Attiva registro su questa zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -214,16 +272,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Indirizzo IP Esterno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Porta Esterna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Comandi extra" @@ -247,11 +306,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Regole Personalizzate" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Inoltro Porte" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Regole Traffico" @@ -264,11 +327,12 @@ msgstr "Firewall - Opzioni delle Zone" msgid "Forward" msgstr "Inoltra" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Inoltra a" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Venerdì" @@ -299,8 +363,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -328,12 +397,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 e IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Solo IPv4" @@ -342,32 +411,60 @@ msgstr "Solo IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Solo IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Ingresso" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Indirizzo IP interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Porta interna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zona Interna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limita messaggi del registro" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -376,6 +473,10 @@ msgstr "MAC" msgid "MACs" msgstr "MACs" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -384,16 +485,54 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Corrispondenza" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Corrispondenza tipo ICMP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -401,17 +540,57 @@ msgstr "" "Corrispondi traffico in entrata diretto alla porta o intervallo di porte " "dato su questo host" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Lunedì" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Giorni del Mese" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nome" @@ -420,19 +599,19 @@ msgstr "Nome" msgid "Network" msgstr "Rete" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Corrispondi solo traffico in entrata diretto al dato indirizzo IP." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Corrispondi solo traffico in entrata da questi MAC." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Corrispondi solo traffico in entrata da questo IP o intervallo." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -440,13 +619,23 @@ msgstr "" "Corrispondi solo traffico in entrata originato dalla porta o intervallo di " "porte sorgenti su host cliente" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "Passa comandi addizionali a iptables. Usare con cura!" @@ -459,12 +648,12 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Inoltri Porta" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -472,17 +661,18 @@ msgstr "" "L'inoltro delle porte permette ai computer in remoto su Internet di " "connettersi a uno specifico computer o servizio presente nella LAN privata" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocollo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "Reindirizza il traffico in entrata alla porta data su host interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Reindirizza il traffico in entrata allo specifico host interno" @@ -510,19 +700,62 @@ msgstr "Limita il Masquerading alle subnet di destinazione date" msgid "Restrict Masquerading to given source subnets" msgstr "Limita il Masquerading alle subnet sorgente date" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Limita agli indirizzi famiglia" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sabato" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -552,46 +785,65 @@ msgstr "" # msgstr "" # msgid "Protocol" # msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Indirizzo IP di origine" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Indirizzo MAC di origine" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Indirizzo di origine" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Porta di origine" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zona di origine" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Data di Inizio (yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Data di Stop (yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Domenica" @@ -636,15 +888,18 @@ msgstr "" "differenti nella zona. Le <em>reti coperte</em> specificano quali reti " "disponibili sono membri di questa zona." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Giovedì" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Orario in UTC" @@ -664,12 +919,22 @@ msgstr "Verso %s su <var>questo dispositivo</var>" msgid "To %s, %s in %s" msgstr "Verso %s, %s in %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Regole di Traffico" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -679,7 +944,8 @@ msgstr "" "tra zone differenti, per esempio per rifiutare il traffico tra certi host o " "per aprire porte WAN sul router." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Martedì" @@ -687,13 +953,23 @@ msgstr "Martedì" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Regola senza nome" @@ -701,6 +977,14 @@ msgstr "Regola senza nome" msgid "Unnamed zone" msgstr "Zona senza nome" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -713,6 +997,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -721,14 +1009,24 @@ msgstr "" msgid "Via %s at %s" msgstr "Via %s a %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Mercoledì" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Giorni della Settimana" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zona ⇒ Inoltri" @@ -737,28 +1035,36 @@ msgstr "Zona ⇒ Inoltri" msgid "Zones" msgstr "Zone" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "accetta" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "qualsiasi" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -772,19 +1078,32 @@ msgstr "qualsiasi router IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "qualsiasi zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "giorno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "non tracciare" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -811,7 +1130,7 @@ msgstr "" msgid "ports" msgstr "porti" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -835,6 +1154,18 @@ msgstr "" msgid "types" msgstr "tipi" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Forza tracciamento connessione" @@ -847,9 +1178,6 @@ msgstr "tipi" #~ msgid "Add and edit..." #~ msgstr "Aggiungi e modifica..." -#~ msgid "Do not rewrite" -#~ msgstr "Non riscrivere" - #~ msgid "External zone" #~ msgstr "Zona Esterna" @@ -880,9 +1208,6 @@ msgstr "tipi" #~ msgid "To source port" #~ msgstr "Verso la porta sorgente" -#~ msgid "Destination IP address" -#~ msgstr "Indirizzo IP destinazione" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Inoltro tra le zone" diff --git a/applications/luci-app-firewall/po/ja/firewall.po b/applications/luci-app-firewall/po/ja/firewall.po index 9abfccf97d..be98d30e70 100644 --- a/applications/luci-app-firewall/po/ja/firewall.po +++ b/applications/luci-app-firewall/po/ja/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s (%s)" @@ -22,7 +22,7 @@ msgstr "%s (%s)" msgid "%s%s with %s" msgstr "%s%s ,%s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s (%s)" @@ -39,6 +39,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var>, %s を上限に設定" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "転送を許可" @@ -51,8 +59,9 @@ msgstr "入力を許可" msgid "Accept output" msgstr "出力を許可" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "動作" @@ -75,8 +84,9 @@ msgstr "" "em> 引数です。(例: HTTPS 受信トラフィックのみにマッチさせる <code>-p tcp --" "sport 443</code>)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "詳細設定" @@ -93,15 +103,33 @@ msgstr "<em>送信元ゾーン</em>からの転送を許可する:" msgid "Allow forward to <em>destination zones</em>:" msgstr "<em>宛先ゾーン</em>への転送を許可する:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "全て" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "全日" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "自動ヘルパー割り当て" @@ -137,7 +165,7 @@ msgstr "対象ネットワーク" msgid "Covered subnets" msgstr "カバーされるサブネット" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "手動設定ルール" @@ -152,18 +180,39 @@ msgstr "" "ドは、ファイアウォール機能の起動ごとに、標準のルールが読み込まれた後に実行さ" "れます。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "宛先アドレス" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "宛先ポート" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "宛先ゾーン" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "転送を破棄" @@ -185,6 +234,10 @@ msgstr "" "追加ルールをインストールしません。これは、複雑で非対称なルートのセットアップ" "に必要となることがあります。" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "リライトしない" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "転送を追跡しない" @@ -201,12 +254,13 @@ msgstr "出力を追跡しない" msgid "Drop invalid packets" msgstr "無効なパケットを遮断する" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "有効" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "NATループバックを有効にする" @@ -218,6 +272,10 @@ msgstr "SYN-Floodプロテクションを有効にする" msgid "Enable logging on this zone" msgstr "このゾーンのログ記録を有効にする" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "実験的な機能です。 QoS/SQM との完全な互換性はありません。" @@ -226,16 +284,17 @@ msgstr "実験的な機能です。 QoS/SQM との完全な互換性はありま msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "ゾーン トラフィックのコネクション追跡ヘルパーを明示的に選択します。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "外部IPアドレス" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "外部ポート" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "追加の引数" @@ -259,11 +318,15 @@ msgstr "ファイアウォール" msgid "Firewall - Custom Rules" msgstr "ファイアウォール - 手動設定ルール" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "ファイアウォール - ポートフォワーディング" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "ファイアウォール - トラフィック・ルール" @@ -276,11 +339,12 @@ msgstr "ファイアウォール - ゾーン設定" msgid "Forward" msgstr "転送" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "転送先" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "金曜日" @@ -311,8 +375,13 @@ msgstr "送信元 %s, %s (<var>デバイス</var>)" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "送信元 %s, %s, %s (<var>デバイス</var>)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -340,12 +409,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4及びIPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "IPv4のみ" @@ -354,32 +423,60 @@ msgstr "IPv4のみ" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "IPv6のみ" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "受信" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "内部IPアドレス" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "内部ポート" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "内部ゾーン" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "ログメッセージを制限" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -388,6 +485,10 @@ msgstr "MAC" msgid "MACs" msgstr "MAC" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSSクランプ" @@ -396,16 +497,54 @@ msgstr "MSSクランプ" msgid "Masquerading" msgstr "マスカレード" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "対象" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "ICMPタイプの一致" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -413,17 +552,57 @@ msgstr "" "設定された宛先ポート(またはポート範囲)に一致した受信トラフィックが対象になり" "ます" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "月曜日" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "月間" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "名前" @@ -432,21 +611,21 @@ msgstr "名前" msgid "Network" msgstr "ネットワーク" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "設定された宛先IPアドレスと一致した受信トラフィックが対象になります。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "設定されたMACアドレスと一致した受信したトラフィックが対象になります。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" "設定されたIPアドレス (または範囲) と一致した受信したトラフィックが対象になり" "ます。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -454,13 +633,23 @@ msgstr "" "設定されたクライアントホストの送信元ポート(またはポート範囲)からの受信トラ" "フィックと一致したトラフィックのみを対象にします。" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "送信" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "iptablesにパススルーする追加の引数を設定してください。ただし、注意して設定し" @@ -480,12 +669,12 @@ msgstr "" "し、全サービスを外部に晒す恐れがあることに、特段の注意を払い使用されなければ" "なりません。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "ポートフォワーディング" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -494,18 +683,19 @@ msgstr "" "ベートなネットワーク上の、特定のコンピュータやサービスへのアクセスを可能にし" "ます。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "プロトコル" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "ルールに一致した受信トラフィックを、内部ホストの設定されたポートへ転送します" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "ルールに一致した受信トラフィックを、設定された内部ホストへ転送します" @@ -534,19 +724,62 @@ msgstr "設定された宛先サブネットへのマスカレードを制限す msgid "Restrict Masquerading to given source subnets" msgstr "設定された送信元サブネットへのマスカレードを制限する" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "アドレスファミリの制限" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "ルーティング/NAT オフロード" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "土曜日" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "ルーティング/NAT のための、ソフトウェアベースのオフロードです。" @@ -555,46 +788,65 @@ msgstr "ルーティング/NAT のための、ソフトウェアベースのオ msgid "Software flow offloading" msgstr "ソフトウェア フローオフロード" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "送信元IPアドレス" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "送信元MACアドレス" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "送信元アドレス" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "送信元ポート" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "送信元ゾーン" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "開始日 (yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "開始時刻 (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "停止日 (yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "停止時刻 (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "日曜日" @@ -637,15 +889,18 @@ msgstr "" "準のポリシーになります。<em>対象ネットワーク</em>は、どのネットワーク設定がこ" "のゾーンに属するかを設定します。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "木曜日" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "時間制限" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "UTC時刻を使用" @@ -665,12 +920,22 @@ msgstr "宛先 %s (<var>デバイス</var>)" msgid "To %s, %s in %s" msgstr "宛先 %s, %s (%s)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "トラフィック・ルール" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -680,7 +945,8 @@ msgstr "" "します。例えば、特定のホスト間や、ルーターのWANポートへのトラフィックの拒否を" "設定することができます。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "火曜日" @@ -688,13 +954,23 @@ msgstr "火曜日" msgid "Unable to save contents: %s" msgstr "内容を保存できません: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "名称未設定の転送" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "名称未設定のルール" @@ -702,6 +978,14 @@ msgstr "名称未設定のルール" msgid "Unnamed zone" msgstr "名称未設定のゾーン" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -718,6 +1002,10 @@ msgstr "" "ネットワークまたはデバイスに代わり、アクセス元またはアクセス先サブネットによ" "るゾーン トラフィックの区分にこのオプションを使用します。" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "経由 %s" @@ -726,14 +1014,24 @@ msgstr "経由 %s" msgid "Via %s at %s" msgstr "経由 %s , %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "水曜日" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "曜日" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "ゾーン ⇒ 転送" @@ -742,28 +1040,36 @@ msgstr "ゾーン ⇒ 転送" msgid "Zones" msgstr "ゾーン" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "許可" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "全て" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -777,19 +1083,32 @@ msgstr "全てのルーターIP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "全てのゾーン" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "日" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "コネクション追跡を行わない" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -816,7 +1135,7 @@ msgstr "ポート" msgid "ports" msgstr "ポート" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -840,6 +1159,18 @@ msgstr "タイプ" msgid "types" msgstr "タイプ" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "強制的にコネクション追跡を行う" @@ -868,9 +1199,6 @@ msgstr "タイプ" #~ msgid "Add and edit..." #~ msgstr "追加及び編集..." -#~ msgid "Do not rewrite" -#~ msgstr "リライトしない" - #~ msgid "External zone" #~ msgstr "外部ゾーン" diff --git a/applications/luci-app-firewall/po/ko/firewall.po b/applications/luci-app-firewall/po/ko/firewall.po index 1e0a970232..00eb4d1261 100644 --- a/applications/luci-app-firewall/po/ko/firewall.po +++ b/applications/luci-app-firewall/po/ko/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -22,7 +22,7 @@ msgstr "" msgid "%s%s with %s" msgstr "%s%s ,%s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -86,15 +96,33 @@ msgstr "<em>Source zone</em> 로부터의 forward 허용:" msgid "Allow forward to <em>destination zones</em>:" msgstr "<em>Destination zone</em> 으로 forward 허용:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -128,7 +156,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Custom Rule" @@ -142,18 +170,39 @@ msgstr "" "수 있도록 합니다. 입력된 명령어들은 매 방화벽 재시작시 실행되는데 default " "ruleset 이 load 된 후 시점입니다." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Destination IP 주소" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Destination 주소" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -172,6 +221,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -188,12 +241,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "활성화" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "NAT Loopback 활성화" @@ -205,6 +259,10 @@ msgstr "SYN-flood protection 활성화" msgid "Enable logging on this zone" msgstr "zone 의 logging 활성화" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -213,16 +271,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "외부 IP 주소" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "외부 port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "추가 argument" @@ -246,11 +305,15 @@ msgstr "방화벽" msgid "Firewall - Custom Rules" msgstr "방화벽 - Custom Rules" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "방화벽 - Port Forwards" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "방화벽 - Traffic Rules" @@ -263,11 +326,12 @@ msgstr "방화벽 - Zone 설정" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "금요일" @@ -298,8 +362,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -327,12 +396,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -341,32 +410,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "내부 IP 주소" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "내부 port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "내부 zone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -375,6 +472,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -383,32 +484,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "월요일" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "이름" @@ -417,31 +596,41 @@ msgstr "이름" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "iptables 명령에 추가 인자들을 더합니다. 조심해 사용하세요!" @@ -454,12 +643,12 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Port Forward" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -467,17 +656,18 @@ msgstr "" "Port forwarding 기능은 인터넷 상의 원격 컴퓨터가 내부 LAN 에 속한 특정 컴퓨터" "나 서비스에 접속할 수 있도록 합니다." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -505,19 +695,62 @@ msgstr "주어진 destination subnet 으로 Masquerading 제한" msgid "Restrict Masquerading to given source subnets" msgstr "주어진 source subnet 으로 Masquerading 제한" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Address family 제한" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "토요일" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -526,46 +759,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Source IP 주소" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Source MAC 주소" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Source 주소" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "시작 날짜 (yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "종료 날짜 (yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "일요일" @@ -609,15 +861,18 @@ msgstr "" "를 오가는 forward traffic 에 대한 정책을 뜻합니다. <em>Covered networks</em> " "에서는 zone 의 영향을 받을 네트워크들을 지정할 수 있습니다." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "목요일" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "UTC 기준시" @@ -637,12 +892,22 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Traffic Rule" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -652,7 +917,8 @@ msgstr "" "다. 예를 들어 특정 host 들 사이의 트래픽을 차단하거나 공유기의 WAN port 를 " "open 할때 사용됩니다." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "화요일" @@ -660,13 +926,23 @@ msgstr "화요일" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -674,6 +950,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -686,6 +970,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -694,14 +982,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "수요일" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "주일" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -710,28 +1008,36 @@ msgstr "" msgid "Zones" msgstr "Zone 내역" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -745,19 +1051,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -784,7 +1103,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -808,6 +1127,18 @@ msgstr "" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Add and edit..." #~ msgstr "추가 후 수정..." @@ -829,9 +1160,6 @@ msgstr "" #~ msgid "New source NAT" #~ msgstr "새로운 source NAT" -#~ msgid "Destination IP address" -#~ msgstr "Destination IP 주소" - #~ msgid "" #~ "Source NAT is a specific form of masquerading which allows fine grained " #~ "control over the source IP used for outgoing traffic, for example to map " diff --git a/applications/luci-app-firewall/po/mr/firewall.po b/applications/luci-app-firewall/po/mr/firewall.po index d3d172f8d8..9b71e137fb 100644 --- a/applications/luci-app-firewall/po/mr/firewall.po +++ b/applications/luci-app-firewall/po/mr/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -22,7 +22,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -38,6 +38,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -50,8 +58,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "" @@ -68,8 +77,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "प्रगत सेटिंग्ज" @@ -86,15 +96,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -128,7 +156,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -139,18 +167,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -169,6 +218,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -185,12 +238,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "सक्षम करा" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -202,6 +256,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -210,16 +268,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -247,11 +306,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -264,11 +327,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -299,8 +363,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -328,12 +397,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 आणि IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "केवळ IPv4" @@ -342,32 +411,60 @@ msgstr "केवळ IPv4" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "केवळ IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -376,6 +473,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -384,32 +485,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "नाव" @@ -418,31 +597,41 @@ msgstr "नाव" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -455,28 +644,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "प्रोटोकॉल" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -504,19 +694,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -555,46 +788,65 @@ msgstr "" # msgid "Protocol" # msgstr "" # -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -624,15 +876,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -652,19 +907,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -672,13 +938,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -686,6 +962,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -698,6 +982,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -706,14 +994,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -722,28 +1020,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -757,19 +1063,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -796,7 +1115,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -819,3 +1138,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/ms/firewall.po b/applications/luci-app-firewall/po/ms/firewall.po index e5071a2550..0e3856e1a7 100644 --- a/applications/luci-app-firewall/po/ms/firewall.po +++ b/applications/luci-app-firewall/po/ms/firewall.po @@ -12,7 +12,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -20,7 +20,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -36,6 +36,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -48,8 +56,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Tindakan" @@ -66,8 +75,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -84,15 +94,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -126,7 +154,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -137,18 +165,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -167,6 +216,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -183,12 +236,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -200,6 +254,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -208,16 +266,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -241,11 +300,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -258,11 +321,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -293,8 +357,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -322,12 +391,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -336,32 +405,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -370,6 +467,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -378,32 +479,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -412,31 +591,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -449,28 +638,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -498,19 +688,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -519,46 +752,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -588,15 +840,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -616,19 +871,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -636,13 +902,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -650,6 +926,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -662,6 +946,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -670,14 +958,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -686,28 +984,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -721,19 +1027,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -760,7 +1079,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -783,3 +1102,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/no/firewall.po b/applications/luci-app-firewall/po/no/firewall.po index 5d094e625e..11e2df5f60 100644 --- a/applications/luci-app-firewall/po/no/firewall.po +++ b/applications/luci-app-firewall/po/no/firewall.po @@ -10,7 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s i %s" @@ -18,7 +18,7 @@ msgstr "%s i %s" msgid "%s%s with %s" msgstr "%s%s med %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s i %s" @@ -34,6 +34,14 @@ msgstr "<var>%d</var> pakker per <var>%s</var>, burst <var>%d</var>pakker." msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> og begrens til %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -46,8 +54,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Handling" @@ -64,8 +73,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Avanserte Innstillinger" @@ -82,15 +92,33 @@ msgstr "Tillat videresending fra <em>kilde soner</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Tillat videresending til <em>destinasjon soner</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Enhver" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -124,7 +152,7 @@ msgstr "Gjeldene nettverk" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Egendefinerte Regler" @@ -138,18 +166,39 @@ msgstr "" "som ikke dekkes av brannmurens standardoppsett. Kommandoene utføres etter " "hver omstart av brannmuren, rett etter at standard regelsett er lastet." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Destinasjon IP adresse" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Destinasjon adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Destinasjon port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Destinasjon sone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -168,6 +217,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Ikke omskriv" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -184,12 +237,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Forkast ugyldige pakker" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Aktiver" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Aktiver NAT <abbr title=\"Loopback\">Tilbakekobling</abbr>" @@ -201,6 +255,10 @@ msgstr "Aktiver SYN-flood beskyttelse" msgid "Enable logging on this zone" msgstr "Aktiver logging av denne sonen" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -209,16 +267,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Ekstern IP adressse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Ekstern port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Ekstra argumenter" @@ -242,11 +301,15 @@ msgstr "Brannmur" msgid "Firewall - Custom Rules" msgstr "Brannmur - Egendefinerte Regler" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Brannmur - Port Videresending" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Brannmur - Trafikk Regler" @@ -259,11 +322,12 @@ msgstr "Brannmur - Sone Innstillinger" msgid "Forward" msgstr "Videresend" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Videresend til" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -294,8 +358,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -323,12 +392,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 og IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Kun IPv4" @@ -337,32 +406,60 @@ msgstr "Kun IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Kun IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Inndata" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Intern IP adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Intern port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Intern sone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Begrens logging" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -371,6 +468,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS Kontroll (Clamping)" @@ -379,16 +480,54 @@ msgstr "MSS Kontroll (Clamping)" msgid "Masquerading" msgstr "Masquerading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Match" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Match ICMP type" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -396,17 +535,57 @@ msgstr "" "Match innkommende trafikk rettet mot den oppgitte destinasjonsport eller " "portområdet på denne verten" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Navn" @@ -415,19 +594,19 @@ msgstr "Navn" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Match kun innkommende trafikk rettet mot den oppgitt IP adresse." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Match kun innkommende trafikk fra disse MAC adresser." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Match kun innkommende trafikk fra denne IP eller IP område." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -435,13 +614,23 @@ msgstr "" "Match kun innkommende trafikk som kommer fra den oppgitte kildeport eller " "fra portområdet til klienten" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Utdata" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "Sender flere argumenter til iptables. Bruk med forsiktighet!" @@ -454,12 +643,12 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Port Videresendinger" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -467,19 +656,20 @@ msgstr "" "Port videresending tillater at eksterne datamaskiner på Internett kan koble " "seg til en bestemt maskin eller tjeneste innenfor det private LAN." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Viderekoble matchet innkommende trafikk til den oppgitte porten på intern " "vert" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Viderekoble matchet innkommende trafikk til den angitte interne vert" @@ -507,19 +697,62 @@ msgstr "Begrens Masquerading til oppgitt destinasjons subnett" msgid "Restrict Masquerading to given source subnets" msgstr "Begrens Masqeuerading til oppgitt kilde subnett" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Begrens til adresse familie" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -528,46 +761,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Kilde IP adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Kilde MAC adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Kilde adresse" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Kilde port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Kilde sone" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -612,15 +864,18 @@ msgstr "" "spesifiserer hvilken av de tilgjengelige nettverk som er medlem av denne " "sone." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -640,12 +895,22 @@ msgstr "Til %s på <var>denne enheten</var>" msgid "To %s, %s in %s" msgstr "Til %s, %s i %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Trafikk Regler" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -655,7 +920,8 @@ msgstr "" "for eksempel for å avvise trafikk mellom visse verter eller for å åpne WAN " "porter på ruteren." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -663,13 +929,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -677,6 +953,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -689,6 +973,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Via %s" @@ -697,14 +985,24 @@ msgstr "Via %s" msgid "Via %s at %s" msgstr "Via %s på %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Sone = Videresendinger" @@ -713,28 +1011,36 @@ msgstr "Sone = Videresendinger" msgid "Zones" msgstr "Soner" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "godta" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "enhver" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -748,19 +1054,32 @@ msgstr "enhver ruter IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "enhver sone" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "ikke track" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -787,7 +1106,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -811,6 +1130,18 @@ msgstr "" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "" #~ "Bruk <abbr title=\\\"connection tracking\\\">forbindelse sporing</abbr>" @@ -821,9 +1152,6 @@ msgstr "" #~ msgid "Add and edit..." #~ msgstr "Legg til og redigere..." -#~ msgid "Do not rewrite" -#~ msgstr "Ikke omskriv" - #~ msgid "External zone" #~ msgstr "Ekstern sone" @@ -863,9 +1191,6 @@ msgstr "" #~ msgid "(Unnamed SNAT)" #~ msgstr "(SNAT uten navn)" -#~ msgid "Destination IP address" -#~ msgstr "Destinasjon IP adresse" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Sone til Sone Videresending" diff --git a/applications/luci-app-firewall/po/pl/firewall.po b/applications/luci-app-firewall/po/pl/firewall.po index fc6222cd0f..375c46c18b 100644 --- a/applications/luci-app-firewall/po/pl/firewall.po +++ b/applications/luci-app-firewall/po/pl/firewall.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" +"PO-Revision-Date: 2020-01-16 21:16+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfirewall/pl/>\n" @@ -13,9 +13,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 3.10.2-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s w %s" @@ -23,7 +23,7 @@ msgstr "%s w %s" msgid "%s%s with %s" msgstr "%s%s z %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s w %s" @@ -40,6 +40,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> i limit do %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "Należy podać adres IP do ponownego zapisu!" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "AKCEPTUJ - Wyłącz przepisywanie adresów" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Zaakceptuj przekazywanie" @@ -52,8 +60,9 @@ msgstr "Zaakceptuj wejście" msgid "Accept output" msgstr "Zaakceptuj wyjście" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Akcja" @@ -76,8 +85,9 @@ msgstr "" "docelowej, np. <code>-p tcp --sport 443</code> tylko w celu dopasowania " "ruchu przychodzącego HTTPS." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" @@ -94,15 +104,37 @@ msgstr "Zezwól na przekazywanie z <em>strefy źródłowej</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Zezwól na przekazywanie do <em>strefy docelowej</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Każdy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Każdy dzień" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" +"Zastosuj bitowy XOR podanej wartości i istniejącej wartości znacznika na " +"ustanowionych połączeniach. Format to wartość [/mask]. Jeśli maska jest " +"określona, wówczas ustawione w niej bity są zerowane." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "Zastosuj daną klasę lub wartość DSCP do ustanowionych połączeń." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" +"Przypisz określonego pomocnika śledzenia połączeń do dopasowanego ruchu." + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Automatyczne przydzielanie pomocy" @@ -120,7 +152,7 @@ msgstr "Ustawienia conntrack" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:218 msgid "Conntrack helpers" -msgstr "Pomocnicy Conntrack'a" +msgstr "Pomocnicy conntrack" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js:15 msgid "Contents have been saved." @@ -138,7 +170,7 @@ msgstr "Objęte sieci" msgid "Covered subnets" msgstr "Objęte podsieci" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Własne reguły" @@ -152,18 +184,39 @@ msgstr "" "są objęte składnią zapory. Polecenia wykonywane są po każdym restarcie " "zapory, zaraz po załadowaniu zestawu reguł domyślnych." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "Klasyfikacja DSCP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "Znacznik DSCP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "Wymagany znacznik DSCP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Docelowy adres IP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Adres docelowy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Port docelowy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Strefa docelowa" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "Nazwa urządzenia" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Odrzuć przekazywanie" @@ -185,6 +238,10 @@ msgstr "" "state <em>invalid</em>. Może to być wymagane w przypadku skomplikowanych " "asymetrycznych ustawień trasy." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Nie przepisuj" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Nie śledź przekazywania" @@ -201,12 +258,13 @@ msgstr "Nie śledź wyjścia" msgid "Drop invalid packets" msgstr "Porzuć wadliwe pakiety" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Włącz" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Włącz NAT Loopback" @@ -218,6 +276,10 @@ msgstr "Włącz ochronę SYN-flood" msgid "Enable logging on this zone" msgstr "Włącz logowanie tej strefy" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "Zaleca się użyć: %s" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Funkcja eksperymentalna. Nie w pełni kompatybilna z QoS/SQM." @@ -227,16 +289,17 @@ msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" "Dokładnie wybiera dozwolone pomoce śledzenia połączeń dla ruchu strefowego" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Zewnętrzne adresy IP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Port zewnętrzny" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Dodatkowe argumenty" @@ -261,13 +324,17 @@ msgstr "Zapora sieciowa" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/custom.js:24 msgid "Firewall - Custom Rules" -msgstr "Zapora sieciowa - Reguły własne" +msgstr "Zapora sieciowa - Własne reguły" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "Zapora sieciowa - Zasady NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Zapora sieciowa - Przekazywane porty" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Zapora sieciowa - Reguły ruchu" @@ -280,11 +347,12 @@ msgstr "Zapora sieciowa - Ustawienia strefy" msgid "Forward" msgstr "Przekazuj" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Przekazuj do" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Piątek" @@ -315,8 +383,13 @@ msgstr "Z %s na <var>to urządzenie</var> ze źródłem %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "Z %s na <var>to urządzenie</var> ze źródłem %s oraz %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "Z %{ipaddr?:any host} %{port?with source %{port}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -344,12 +417,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 i IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Tylko IPv4" @@ -358,32 +431,60 @@ msgstr "Tylko IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Tylko IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "Urządzenie przychodzące" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Ruch przychodzący" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Wewnętrzny adres IP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" -msgstr "Wewnętrzny port" +msgstr "Port wewnętrzny" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Strefa wewnętrzna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "Nieprawidłowy znacznik DSCP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "Nieprawidłowa wartość graniczna" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "Naruszenie limitu" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Ograniczenie logowania" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "Dopasowanie limitu" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "Ogranicza ruch zgodny z określoną stawką." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "Źródło pętli zwrotnej IP" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -392,6 +493,10 @@ msgstr "MAC" msgid "MACs" msgstr "MACs" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "MASQUERADE - Automatyczne przepisywanie na interfejs wyjściowy IP" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Dostosuj MSS" @@ -400,16 +505,59 @@ msgstr "Dostosuj MSS" msgid "Masquerading" msgstr "Maskarada" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Dopasuj" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" +"Dopasuj %{protocol?%{family} %{protocol} traffic:any %{family} traffic} " +"%{mark?with firewall mark %{mark}} %{limit?limited to %{limit}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "Dopasuj DSCP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Dopasuj typ ICMP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "Dopasuj urządzenie" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "Dopasuj przesyłany ruch skierowany na podany adres IP." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" +"Dopasuj przesyłany ruch skierowany na dany port docelowy lub zakres portów." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "Dopasuj przesyłany ruch z tego adresu IP lub zakresu." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" +"Dopasuj przesyłany ruch pochodzący z danego portu źródłowego lub zakresu " +"portów." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "Dopasuj pomocnika" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -417,17 +565,64 @@ msgstr "" "Dopasuj ruch przychodzący do danego portu docelowego lub zakresu portów na " "tym hoście" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "Znacznik dopasowania" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "Dopasuj ruch, używając określonego pomocnika śledzenia połączeń." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "Odpowiada konkretnemu znakowi zapory lub zakresowi różnych znaków." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" +"Dopasowuje przesyłany ruch przy użyciu określonego wychodzącego urządzenia " +"sieciowego." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "Dopasowuje ruch niosący określone oznaczenie DSCP." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" +"Maksymalna początkowa liczba pakietów do dopasowania: ta liczba jest " +"ładowana jednorazowo za każdym razem, gdy limit określony powyżej nie " +"zostanie osiągnięty, aż do tej liczby." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Poniedziałek" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Dni miesiąca" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "Zasady NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" +"Reguły NAT umożliwiają precyzyjną kontrolę źródłowego adresu IP w celu " +"użycia ruchu wychodzącego lub przekazywanego." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nazwa" @@ -436,19 +631,19 @@ msgstr "Nazwa" msgid "Network" msgstr "Sieć" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Dopasuj tylko przychodzący ruch skierowany do danego adresu IP." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Dopasuj tylko ruch z tych adresów MAC." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Dopasuj tylko ruch przychodzący z tego adresu IP lub zakresu adresów." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -456,13 +651,23 @@ msgstr "" "Dopasuj tylko ruch przychodzący z podanego portu źródłowego lub zakresu " "portów na hoście klienta" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "Urządzenie wychodzące" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "Strefa wychodząca" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Ruch wychodzący" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "Przekazuje dodatkowe argumenty do iptables. Zachowaj szczególną ostrożność!" @@ -482,12 +687,12 @@ msgstr "" "złamanie zestawu reguł zapory sieciowej, całkowicie odsłaniając wszystkie " "usługi." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" -msgstr "Przekazane porty" +msgstr "Przekazywanie portów" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -495,19 +700,20 @@ msgstr "" "Przekazanie portów pozwala komputerom z internetu na połączenia z " "komputerami z sieci LAN." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protokół" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Przekieruj ruch przychodzący na podany port do wskazanego hosta w sieci " "wewnętrznej" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Przekieruj ruch przychodzący do wskazanego hosta w sieci wewnętrznej" @@ -537,19 +743,66 @@ msgstr "Ogranicz maskaradę do wskazanych podsieci źródłowych" # Wstawiłem rodzinę gdyż gdzieś wcześniej było tak opisane ale klasa pasuje mi tu bardziej. # Obsy - niestety ale "rodzina". W gui dotyczy to wyboru IPv4/IPv6, więc "rodzina" a nie klasa. -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Ogranicz do rodziny adresów" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "Przepisz adres IP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "Przepisz dopasowany ruch do określonego źródłowego adresu IP." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" +"Przepisz dopasowany ruch do określonego portu źródłowego lub zakresu portów." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "Przepisz port" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "Przepisz do" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "Przepisz do %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "Przepisz do adresu IP urządzenia wychodzącego" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Routing/NAT Offloading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "SNAT - Przepisz do określonego źródłowego adresu IP lub portu" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sobota" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "Ustaw znacznik" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" +"Ustaw podaną wartość znaku na ustanowionych połączeniach. Format to wartość " +"[/mask]. Jeśli maska jest określona, modyfikowane są tylko te bity ustawione " +"w masce." + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Oprogramowanie oparte na offloading dla routingu/NAT" @@ -558,46 +811,69 @@ msgstr "Oprogramowanie oparte na offloading dla routingu/NAT" msgid "Software flow offloading" msgstr "Programowy flow offloading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Źródłowy adres IP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Źródłowy adres MAC" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Adres źródłowy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Port źródłowy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Strefa źródłowa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" +"Określa, czy powiązać tę regułę ruchu z określonym przychodzącym, czy " +"wychodzącym urządzeniem sieciowym." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" +"Określa, czy użyć zewnętrznego czy wewnętrznego adresu IP do odbijanego " +"ruchu." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Data rozpoczęcia (rrrr-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Czas rozpoczęcia (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Data zakończenia (yyyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Czas zatrzymania (yyyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Niedziela" @@ -637,18 +913,21 @@ msgstr "" "Ta sekcja definiuje ustawienia ogólne %q. Opcje <em>wejście</em> i " "<em>wyjście</em> określające domyślną politykę dla ruchu przychodzącego i " "wychodzącego w tej strefie, podczas gdy <em>przekazywanie</em> opisuje " -"politykę ruchu przekazywanego pomiędzy różnymi sieciami wewnątrz strefy. <em>" -"Objęte sieci</em> określają dostępne sieci będące członkami tej strefy." +"politykę ruchu przekazywanego pomiędzy różnymi sieciami wewnątrz strefy. " +"<em>Objęte sieci</em> określają dostępne sieci będące członkami tej strefy." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Czwartek" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Ograniczenia czasowe" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Czas w UTC" @@ -668,12 +947,24 @@ msgstr "Do %s na <var>tym urządzeniu</var>" msgid "To %s, %s in %s" msgstr "Do %s, %s w %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" +"Do %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "Pomocnik śledzenia" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Reguły ruchu sieciowego" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -683,7 +974,8 @@ msgstr "" "między strefami, na przykład aby odrzucać ruch między konkretnymi hostami " "albo otworzyć porty WAN routera." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Wtorek" @@ -691,13 +983,23 @@ msgstr "Wtorek" msgid "Unable to save contents: %s" msgstr "Nie można zapisać zawartości: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "Nieznany lub nie zainstalowany pomocnik conntrack \"%s\"" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "Nienazwany NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Przekazywanie bez nazwy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Nieznana zasada" @@ -705,6 +1007,14 @@ msgstr "Nieznana zasada" msgid "Unnamed zone" msgstr "Strefa bez nazwy" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "Użyj zewnętrznego adresu IP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "Użyj wewnętrznego adresu IP" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -721,6 +1031,10 @@ msgstr "" "Opcji tej należy używać do klasyfikacji ruchu strefowego według źródła lub " "podsieci docelowej zamiast sieci lub urządzeń." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Przez %s" @@ -729,14 +1043,24 @@ msgstr "Przez %s" msgid "Via %s at %s" msgstr "Przez %s w %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Środa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Dni tygodnia" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "Znacznik zapory XOR" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "Znacznik XOR" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Strefa ⇒ Przekazywanie" @@ -745,28 +1069,36 @@ msgstr "Strefa ⇒ Przekazywanie" msgid "Zones" msgstr "Strefy" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "akceptuj" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "dowolny" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -780,19 +1112,32 @@ msgstr "dowolne IP routera" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "dowolna strefa" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "Zastosuj znacznik zapory" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "przypisz pomocnika conntrack" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "Dzień" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "Nie przepisuj" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "nie śledź" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -819,7 +1164,7 @@ msgstr "port" msgid "ports" msgstr "porty" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -843,6 +1188,18 @@ msgstr "typ" msgid "types" msgstr "typy" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "nielimitowane" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "nieokreślone" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "prawidłowy znacznik zapory sieciowej" + #~ msgid "Force connection tracking" #~ msgstr "Wymuś śledzenie połączeń" @@ -852,9 +1209,6 @@ msgstr "typy" #~ msgid "Add and edit..." #~ msgstr "Dodaj i edytuj..." -#~ msgid "Do not rewrite" -#~ msgstr "Nie przepisuj" - #~ msgid "External zone" #~ msgstr "Strefa zewnętrzna" @@ -894,9 +1248,6 @@ msgstr "typy" #~ msgid "(Unnamed SNAT)" #~ msgstr "(Nienazwany SNAT)" -#~ msgid "Destination IP address" -#~ msgstr "Docelowy adres IP" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Przekazywanie pomiędzy strefami" diff --git a/applications/luci-app-firewall/po/pt-br/firewall.po b/applications/luci-app-firewall/po/pt-br/firewall.po index f2387988c6..2ee9b06f58 100644 --- a/applications/luci-app-firewall/po/pt-br/firewall.po +++ b/applications/luci-app-firewall/po/pt-br/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s in %s" @@ -22,7 +22,7 @@ msgstr "%s in %s" msgid "%s%s with %s" msgstr "%s%s com %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s em %s" @@ -38,6 +38,14 @@ msgstr "<var>%d</var> pcts. por <var>%s</var>, pico <var>%d</var> pcts." msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> e limite a %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Aceitar encaminhamento" @@ -50,8 +58,9 @@ msgstr "Aceitar entrada" msgid "Accept output" msgstr "Aceitar saída" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Ação" @@ -74,8 +83,9 @@ msgstr "" "da zona, por exemplo, <code>-p tcp --sport 443</code> para corresponder " "apenas ao tráfego HTTPS de entrada." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Configurações Avançadas" @@ -92,15 +102,33 @@ msgstr "Permite o encaminhamento da <em>zona de origem</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Permite o encaminhamento para a <em>zona de destino</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Qualquer" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Qualquer dia" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Atribuição automática de assistentes" @@ -136,7 +164,7 @@ msgstr "Redes cobertas" msgid "Covered subnets" msgstr "Sub-redes cobertas" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Regras Personalizadas" @@ -150,18 +178,39 @@ msgstr "" "cobertos por esta ferramenta. Os comandos serão executados após cada " "reinício do firewall, logo após a carga do conjunto de regras padrão." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Endereço IP de destino" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Endereço de destino" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Porta de destino" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zona de destino" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Descartar o encaminhamento" @@ -183,6 +232,10 @@ msgstr "" "estado do conntrack for <em>invalid</em>. Isto pode ser necessário para " "configurações complexas e de rotas assimétricas." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Não sobrescreva" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Não rastrear o encaminhamento" @@ -199,12 +252,13 @@ msgstr "Não rastrear a saída" msgid "Drop invalid packets" msgstr "Descartar pacotes inválidos" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Habilite o Loopback do NAT" @@ -216,6 +270,10 @@ msgstr "Habilite proteção contra SYN-flood" msgid "Enable logging on this zone" msgstr "Habilite o registro nesta zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -227,16 +285,17 @@ msgstr "" "Escolhe explicitamente os assistentes de rastreamento de conexão permitidos " "para o tráfego da zona" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Endereço IP externo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Porta Externa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Argumentos extras" @@ -260,11 +319,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Regras personalizadas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Encaminhamento de Portas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Regras de Tráfego" @@ -277,11 +340,12 @@ msgstr "Firewall - Configurações de Zona" msgid "Forward" msgstr "Encaminhar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Encaminhar para" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Sexta-feira" @@ -312,8 +376,13 @@ msgstr "De %s <var>neste dispositivo</var> com origem %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "De %s <var>neste dispositivo</var> com origem %s e %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -341,12 +410,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 e IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Somente IPv4" @@ -355,32 +424,60 @@ msgstr "Somente IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Somente IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Entrada" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Endereço IP interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Porta Interna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zona interna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limita as mensagens de registro" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -389,6 +486,10 @@ msgstr "MAC" msgid "MACs" msgstr "MACs" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Ajuste do MSS" @@ -397,16 +498,54 @@ msgstr "Ajuste do MSS" msgid "Masquerading" msgstr "Mascaramento" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Casa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Casa com ICMP tipo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -414,17 +553,57 @@ msgstr "" "Casa o tráfego entrante direcionado para uma porta ou faixa de portas de " "destino específica neste computador" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Segunda-Feira" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Dias do mês" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nome" @@ -433,20 +612,20 @@ msgstr "Nome" msgid "Network" msgstr "Rede" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" "Somente case o tráfego entrante direcionado para o endereço IP fornecido." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Somente case o tráfego entrante destes endereços MAC." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Somente case o tráfego entrante desta faixa de endereços IP." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -454,13 +633,23 @@ msgstr "" "Somente case o tráfego entrante vindo da porta de origem fornecida ou " "intervalo de portas no equipamento cliente" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Saída" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "Passa argumentos adicionais para o iptables. Use com cuidado!" @@ -478,12 +667,12 @@ msgstr "" "extremo cuidado, pois valores inválidos podem quebrar todo o conjunto de " "regras do firewall expondo todos os serviços completamente." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Encaminhamentos de Porta" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -491,18 +680,19 @@ msgstr "" "O encaminhamento de portas permite que computadores remotos na Internet " "conectem a um computador ou serviço específico dentro da rede local privada." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocolo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Redireciona tráfego entrante para a porta especificada no computador interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Redireciona tráfego entrante para o computador interno especificado" @@ -530,19 +720,62 @@ msgstr "Restringe o mascaramento para uma subrede de destino específica" msgid "Restrict Masquerading to given source subnets" msgstr "Restringe o mascaramento para uma subrede de origem específica" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Restringe para uma família de endereços" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Aceleração de Roteamento/NAT" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sábado" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Aceleração de roteamento/NAT baseada em Software" @@ -551,46 +784,65 @@ msgstr "Aceleração de roteamento/NAT baseada em Software" msgid "Software flow offloading" msgstr "Aceleração de fluxo de dados via Software" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Endereço IP de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Endereço MAC de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Endereço de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Porta de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zona de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Dia inicial (aaaa-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Hora de Início (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Dia final (aaaa-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Hora de Parada (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Domingo" @@ -634,15 +886,18 @@ msgstr "" "<em>Redes Cobertas</em> especificam que redes disponíveis são membros desta " "zona." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Quita-feira" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Restrições de tempo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Hora em UTC" @@ -662,12 +917,22 @@ msgstr "Para %s <var>neste dispositivo</var>" msgid "To %s, %s in %s" msgstr "Para %s, %s em %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Regras de tráfego" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -677,7 +942,8 @@ msgstr "" "diferentes zonas. Por exemplo, rejeitar o tráfego entre certos equipamentos " "ou abrir portas WAN no roteador." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Terça-feira" @@ -685,13 +951,23 @@ msgstr "Terça-feira" msgid "Unable to save contents: %s" msgstr "Não foi possível salvar os conteúdos: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Encaminhamento sem nome" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Regra sem nome" @@ -699,6 +975,14 @@ msgstr "Regra sem nome" msgid "Unnamed zone" msgstr "Zona sem nome" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -715,6 +999,10 @@ msgstr "" "Use esta opção para classificar o tráfego da zona por sub-rede de origem ou " "destino em vez de redes ou dispositivos." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Via %s" @@ -723,14 +1011,24 @@ msgstr "Via %s" msgid "Via %s at %s" msgstr "Através do %s na %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Quarta-feira" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Dias da semana" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zona ⇒ Encaminhamentos" @@ -739,28 +1037,36 @@ msgstr "Zona ⇒ Encaminhamentos" msgid "Zones" msgstr "Zonas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "aceitar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "qualquer" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -774,19 +1080,32 @@ msgstr "qualquer endereço IP do roteador" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "qualquer zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "dia" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "não rastrear" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -813,7 +1132,7 @@ msgstr "porta" msgid "ports" msgstr "portas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -837,6 +1156,18 @@ msgstr "tipo" msgid "types" msgstr "tipos" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Force o rastreamento da conexão" @@ -858,9 +1189,6 @@ msgstr "tipos" #~ msgid "Add and edit..." #~ msgstr "Adicionar e editar..." -#~ msgid "Do not rewrite" -#~ msgstr "Não sobrescreva" - #~ msgid "External zone" #~ msgstr "Zona externa" @@ -903,9 +1231,6 @@ msgstr "tipos" #~ msgid "(Unnamed SNAT)" #~ msgstr "(SNAT Sem Nome)" -#~ msgid "Destination IP address" -#~ msgstr "Endereço IP de destino" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Encaminhamento entre Zonas" diff --git a/applications/luci-app-firewall/po/pt/firewall.po b/applications/luci-app-firewall/po/pt/firewall.po index 60a8a4698f..59615617fa 100644 --- a/applications/luci-app-firewall/po/pt/firewall.po +++ b/applications/luci-app-firewall/po/pt/firewall.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s em %s" @@ -22,7 +22,7 @@ msgstr "%s em %s" msgid "%s%s with %s" msgstr "%s%s with %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s em %s" @@ -38,6 +38,14 @@ msgstr "<var>%d</var> pcts. por <var>%s</var>, burst <var>%d</var> pcts." msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> e limite a %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Aceitar o encaminhamento" @@ -50,8 +58,9 @@ msgstr "Aceitar a entrada" msgid "Accept output" msgstr "Aceitar a saída" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Ação" @@ -74,8 +83,9 @@ msgstr "" "fonte de zona, por exemplo, <code>-p tcp - esporte 443</code> para " "corresponder apenas ao tráfego HTTPS de entrada." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Definições Avançadas" @@ -92,15 +102,33 @@ msgstr "Permitir encaminhamento de <em>zonas de origem</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Permitir encaminhamento para <em>zonas de destino</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Qualquer" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Qualquer dia" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Atribuição automática de assistentes" @@ -136,7 +164,7 @@ msgstr "Redes abrangidas" msgid "Covered subnets" msgstr "Subredes abrangidas" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Regras Personalizadas" @@ -151,18 +179,39 @@ msgstr "" "comandos são executados a seguir ao reinicio da firewall, logo a seguir ao " "conjunto de regras predefinidas serem carregadas." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Endereço IP de destino" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Endereço de destino" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Porta de destino" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zona de destino" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Descartar o encaminhamento" @@ -184,6 +233,10 @@ msgstr "" "conntrack <em>invalid</em>. Isto pode ser necessário para configurações " "complexas de rotas assimétricas." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Não re-escrever" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Não rastrear o encaminhamento" @@ -200,12 +253,13 @@ msgstr "Não rastrear a saída" msgid "Drop invalid packets" msgstr "Cancelar pacotes inválidos" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Ativar NAT Loopback" @@ -217,6 +271,10 @@ msgstr "Ativar a Proteção SYN-flood" msgid "Enable logging on this zone" msgstr "Ativar registo nesta zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Característica experimental. Não totalmente compatível com QoS/SQM." @@ -227,16 +285,17 @@ msgstr "" "Escolhe explicitamente os assistentes de rastreamento de conexão permitidos " "para o tráfego da zona" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Endereço IP externo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Porta externa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Argumentos adicionais" @@ -260,11 +319,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Regras Personalizadas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Encaminhamento de Portas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Regras de Tráfego" @@ -277,11 +340,12 @@ msgstr "Firewall - Definições de Zona" msgid "Forward" msgstr "Encaminhar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Encaminhar para" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Sexta-feira" @@ -312,8 +376,13 @@ msgstr "De %s <var>neste aparelho</var> com a fonte %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "De %s <var>neste aparelho</var> com as fontes %s e %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -341,12 +410,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 e IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Só IPv4" @@ -355,32 +424,60 @@ msgstr "Só IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Só IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Entrada" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Endereço IP interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Porta interna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zona Interna" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limitar registo de mensagens" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -389,6 +486,10 @@ msgstr "MAC" msgid "MACs" msgstr "MACs" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Fixação de MSS" @@ -397,16 +498,54 @@ msgstr "Fixação de MSS" msgid "Masquerading" msgstr "Mascaramento" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Corresponder" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Correspondência do tipo de ICMP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -414,17 +553,57 @@ msgstr "" "O tráfego de entrada corresponde a uma dada porta de destino ou intervalo de " "portas neste host" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Segunda-feira" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Dias do mês" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nome" @@ -433,19 +612,19 @@ msgstr "Nome" msgid "Network" msgstr "Rede" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Só se tráfego de entrada corresponder ao endereço IP fornecido." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Só se o tráfego de entrada corresponder a um destes MACs." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Só se o tráfego de entrada corresponder a este IP ou intervalo." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -453,13 +632,23 @@ msgstr "" "Só se o tráfego de entrada corresponder à porta de origem fornecida ou de um " "intervalo de portas no host cliente" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Saída" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "Passa argumentos adicionais para o iptables. Usar com cuidado!" @@ -477,12 +666,12 @@ msgstr "" "cuidado, pois valores inválidos podem tornar o conjunto de regras do " "firewall quebrado, expondo completamente todos os serviços." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Encaminhamento de Portas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -490,19 +679,20 @@ msgstr "" "O Encaminhamento de Portas permite que computadores remotos na internet se " "liguem a um computador ou serviço especifico na rede privada (LAN)." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocolo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Redirecionar a entrada de trafego correspondente à porta fornecida no host " "interno" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Redirecionar o tráfego de entrada correspondente para o host interno" @@ -531,19 +721,62 @@ msgstr "Restringir o Mascaramento às sub-redes de destino dadas" msgid "Restrict Masquerading to given source subnets" msgstr "Restringir Mascaramento a sub-redes de origem fornecidas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Restringir a família de endereços" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Descargar Roteamento/NAT" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sábado" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Descarga baseada em software para roteamento/NAT" @@ -552,46 +785,65 @@ msgstr "Descarga baseada em software para roteamento/NAT" msgid "Software flow offloading" msgstr "Descarga de fluxo de software" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Endereço IP de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Endereço MAC de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Endereço de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Porta de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zona de origem" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Data de Início (aaaaa-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Hora de início (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Data de Paragem (aaaaa-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Tempo de Parada (hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Domingo" @@ -636,15 +888,18 @@ msgstr "" "abrangidas</em> especifica quais das redes disponíveis são membros desta " "zona." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Quinta-feira" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Restrições de Tempo" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Tempo em UTC" @@ -664,12 +919,22 @@ msgstr "Para %s em <var>este dispositivo</var>" msgid "To %s, %s in %s" msgstr "Para %s, %s em %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Regras de Tráfego" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -679,7 +944,8 @@ msgstr "" "diferentes zonas, por exemplo, para rejeitar trafego entre certos hosts ou " "para abrir portas WAN no router." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Terça-feira" @@ -687,13 +953,23 @@ msgstr "Terça-feira" msgid "Unable to save contents: %s" msgstr "Incapaz de gravar conteúdos: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Encaminhamento sem nome" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Regra sem nome" @@ -701,6 +977,14 @@ msgstr "Regra sem nome" msgid "Unnamed zone" msgstr "Zona sem nome" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -717,6 +1001,10 @@ msgstr "" "Use esta opção para classificar o tráfego da zona por sub-rede de origem ou " "destino em vez de redes ou aparelhos." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Via %s" @@ -725,14 +1013,24 @@ msgstr "Via %s" msgid "Via %s at %s" msgstr "Via %s no %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Quarta-feira" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Dias úteis" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Zona ⇒ Encaminhamentos" @@ -741,28 +1039,36 @@ msgstr "Zona ⇒ Encaminhamentos" msgid "Zones" msgstr "Zonas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "aceitar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "qualquer" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -776,19 +1082,32 @@ msgstr "qualquer IP do router" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "qualquer zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "dia" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "não seguir" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -815,7 +1134,7 @@ msgstr "porta" msgid "ports" msgstr "portas" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -839,6 +1158,18 @@ msgstr "tipo" msgid "types" msgstr "tipos" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Forçar rasto de ligação" @@ -858,9 +1189,6 @@ msgstr "tipos" #~ msgid "Add and edit..." #~ msgstr "Adicionar e editar..." -#~ msgid "Do not rewrite" -#~ msgstr "Não re-escrever" - #~ msgid "External zone" #~ msgstr "Zona externa" @@ -900,9 +1228,6 @@ msgstr "tipos" #~ msgid "(Unnamed SNAT)" #~ msgstr "(SNAT Sem Nome)" -#~ msgid "Destination IP address" -#~ msgstr "Endereço IP de destino" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Encaminhamento Inter-Zona" diff --git a/applications/luci-app-firewall/po/ro/firewall.po b/applications/luci-app-firewall/po/ro/firewall.po index 77977568e6..cabf779ac5 100644 --- a/applications/luci-app-firewall/po/ro/firewall.po +++ b/applications/luci-app-firewall/po/ro/firewall.po @@ -13,7 +13,7 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s în %s" @@ -21,7 +21,7 @@ msgstr "%s în %s" msgid "%s%s with %s" msgstr "%s%s cu %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s în %s" @@ -37,6 +37,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -49,8 +57,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Actiune" @@ -67,8 +76,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Setări avansate" @@ -85,15 +95,33 @@ msgstr "Permite trecerea din <em>zonele sursa</em>." msgid "Allow forward to <em>destination zones</em>:" msgstr "Permite trecerea catre <em>zonele sursa</em>." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Oricare" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Orice zi" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -127,7 +155,7 @@ msgstr "Retele acoperite" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Reguli suplimentare" @@ -138,18 +166,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Destinaţie adresă IP" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Destinaţie adresă" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Portul destinatie" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Zonă de destinație" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -168,6 +217,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Nu rescrie" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -184,12 +237,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Descarcă pachetele invalide" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Activează" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Activează loopback NAT" @@ -201,6 +255,10 @@ msgstr "Activează protecţia SYN-flood" msgid "Enable logging on this zone" msgstr "Activeaza log in aceasta zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Funcție experimentală. Nu este complet compatibiă cu QoS/SQM." @@ -209,16 +267,17 @@ msgstr "Funcție experimentală. Nu este complet compatibiă cu QoS/SQM." msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Adresă IP externă" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Port extern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -242,11 +301,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "Firewall - Reguli particularizate" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Firewall - Port-uri forwardate" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Firewall - Reguli ale traficului" @@ -259,11 +322,12 @@ msgstr "Setari zona la firewall" msgid "Forward" msgstr "Forward" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Vineri" @@ -294,8 +358,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -323,12 +392,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 şi IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "doar IPv4" @@ -337,32 +406,60 @@ msgstr "doar IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "doar IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Intrare" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Adresa IP interna" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Port intern" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Zonă internă" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Limitează mesaje în log" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -371,6 +468,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Ajustare MSS" @@ -379,32 +480,110 @@ msgstr "Ajustare MSS" msgid "Masquerading" msgstr "Translatare" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Potrivire" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Potriveste pe tipul de ICMP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Luni" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Nume" @@ -413,31 +592,41 @@ msgstr "Nume" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Ieşire" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -450,28 +639,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protocol" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -499,19 +689,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Sâmbătă" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -520,46 +753,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "Sursă adresă IP" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "Sursă adresă MAC" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Adresa sursa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Port sursa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Zona sursa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Duminică" @@ -589,15 +841,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Joi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Restricţii de timp" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -617,19 +872,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Marţi" @@ -637,13 +903,23 @@ msgstr "Marţi" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -651,6 +927,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -663,6 +947,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -671,14 +959,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Miercuri" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -687,28 +985,36 @@ msgstr "" msgid "Zones" msgstr "Zone" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "accept" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "oricare" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -722,19 +1028,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "orice zona" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "zi" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -761,7 +1080,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -785,6 +1104,18 @@ msgstr "tip" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Forteaza urmarirea conexiunilor" @@ -794,9 +1125,6 @@ msgstr "" #~ msgid "Add and edit..." #~ msgstr "Adaugă şi editează..." -#~ msgid "Do not rewrite" -#~ msgstr "Nu rescrie" - #~ msgid "External zone" #~ msgstr "Zonă externă" @@ -815,9 +1143,6 @@ msgstr "" #~ msgid "(Unnamed SNAT)" #~ msgstr "(SNAT fără nume)" -#~ msgid "Destination IP address" -#~ msgstr "Destinaţie adresă IP" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "Forwardare intre-zone" diff --git a/applications/luci-app-firewall/po/ru/firewall.po b/applications/luci-app-firewall/po/ru/firewall.po index 759b7d5b15..116b351969 100644 --- a/applications/luci-app-firewall/po/ru/firewall.po +++ b/applications/luci-app-firewall/po/ru/firewall.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: firewall\n" "POT-Creation-Date: 2013-09-05 16:02+0200\n" -"PO-Revision-Date: 2020-01-11 18:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2020-01-16 20:37+0000\n" +"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfirewall/ru/>\n" "Language: ru\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.10.1\n" +"X-Generator: Weblate 3.10.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s в %s" @@ -24,7 +24,7 @@ msgstr "%s в %s" msgid "%s%s with %s" msgstr "%s%s с %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s в %s" @@ -40,6 +40,14 @@ msgstr "<var>%d</var> пакетов за <var>%s</var>, подряд <var>%d</v msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> с пределом в %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "IP-адрес для перезаписи должен быть указан!" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "ACCEPT — отключить перезапись адреса" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Принимать перенаправляемый трафик" @@ -52,8 +60,9 @@ msgstr "Принимать входящий трафик" msgid "Accept output" msgstr "Принимать исходящий трафик" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Действие" @@ -76,8 +85,9 @@ msgstr "" "источника, например <code>-p tcp --sport 443</code> для соответствия только " "входящему HTTPS трафику." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Дополнительные настройки" @@ -94,15 +104,35 @@ msgstr "Разрешить перенаправление из <em>'зон ис msgid "Allow forward to <em>destination zones</em>:" msgstr "Разрешить перенаправление в <em>'зоны назначения'</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Любой" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Любой день" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" +"Назначить указанного помощника отслеживания соединений для соответствующего " +"трафика." + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Автоматическое назначение помощников" @@ -112,7 +142,7 @@ msgid "" "Automatically assign conntrack helpers based on traffic protocol and port" msgstr "" "Автоматическое назначение помощников отслеживания соединений (conntrack) на " -"основе протокола и порта трафика." +"основе протокола и порта трафика" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:79 msgid "Conntrack Settings" @@ -138,7 +168,7 @@ msgstr "Охватываемые сети" msgid "Covered subnets" msgstr "Охватываемые подсети" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Пользовательские правила" @@ -153,18 +183,39 @@ msgstr "" "каждой перезагрузки межсетевого экрана, сразу после загрузки набора правил " "по умолчанию." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "IP-адрес назначения" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Адрес назначения" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Порт назначения" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Зона назначения" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "Имя устройства" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Отклонять перенаправляемый трафик" @@ -186,6 +237,10 @@ msgstr "" "трафика с состоянием <em>недействительный</em> (<em>invalid</em>). Это может " "потребоваться для сложных настроек асимметричной маршрутизации." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Не перезаписывать" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Не отслеживать перенаправляемый трафик" @@ -202,12 +257,13 @@ msgstr "Не отслеживать исходящий трафик" msgid "Drop invalid packets" msgstr "Отбрасывать некорректные пакеты" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Включить" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Включить NAT Loopback" @@ -219,6 +275,10 @@ msgstr "Включить защиту от SYN-flood атак" msgid "Enable logging on this zone" msgstr "Включить журналирование в этой зоне" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "Ожидается: %s" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Экспериментальный функционал. Не полностью совместим с QoS/SQM." @@ -227,18 +287,19 @@ msgstr "Экспериментальный функционал. Не полно msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" "Явно определяет допустимые варианты помощников (helpers) отслеживания " -"соединений (connection tracking) трафика в зоне." +"соединений (connection tracking) трафика в зоне" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Внешний IP-адрес" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Внешний порт" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Дополнительные аргументы" @@ -262,11 +323,15 @@ msgstr "Межсетевой экран" msgid "Firewall - Custom Rules" msgstr "Межсетевой экран - Пользовательские правила" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "Межсетевой экран - Правила NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Межсетевой экран - Перенаправление портов" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Межсетевой экран - Правила для трафика" @@ -279,11 +344,12 @@ msgstr "Межсетевой экран - Настройка зон" msgid "Forward" msgstr "Перенаправление" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Перенаправлять на" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Пятница" @@ -314,8 +380,13 @@ msgstr "Из %s в <var>это устройство</var> с источнико msgid "From %s on <var>this device</var> with source %s and %s" msgstr "Из %s в <var>это устройство</var> с источниками %s and %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "Из %{ipaddr?:любой хост} %{port?с источником %{port}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -343,12 +414,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 и IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Только IPv4" @@ -357,32 +428,60 @@ msgstr "Только IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Только IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "Входящее устройство" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Входящий трафик" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Внутренний IP-адрес" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Внутренний порт" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Внутренняя зона" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Ограничить журнал сообщений" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "IP-адрес источника петли (Loopback)" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -391,6 +490,11 @@ msgstr "MAC" msgid "MACs" msgstr "MAC-адреса" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" +"MASQUERADE — автоматически переписывать на IP-адрес исходящего интерфейса" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Ограничение MSS" @@ -399,16 +503,62 @@ msgstr "Ограничение MSS" msgid "Masquerading" msgstr "Маскарадинг" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Входящий трафик" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" +"Соответствует %{protocol?%{family} %{protocol} трафику:любому %{family} " +"трафику} %{mark?с меткой брандмауэра %{mark}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Соответствовать ICMP типу" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "Соответствие устройству" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" +"Соответствие перенаправляемого трафика, направленного на заданный IP-адрес." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" +"Соответствие перенаправляемого трафика, направленного на заданный порт " +"назначения или диапазон портов." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" +"Соответствие перенаправляемого трафика от данного IP-адреса или диапазона." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" +"Соответствие перенаправляемого трафика, исходящего от заданного порта " +"источника или диапазона портов." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "Соответствие помощнику" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -416,17 +566,63 @@ msgstr "" "Порт или диапазон портов, входящие подключения на который будут " "перенаправляться на внутренний порт внутреннего IP-адреса (см. ниже)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "Соответствие метки" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" +"Сопоставление трафика с помощью указанного помощника отслеживания соединений." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" +"Соответствие определённой метке брандмауэра или диапазона различных меток." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" +"Соответствие перенаправляемого трафика, использующего указанное исходящее " +"сетевое устройство." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Понедельник" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Дни месяца" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "Правила NAT" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" +"Правила NAT позволяют точно контролировать IP-адрес источника в исходящем " +"или перенаправляемом трафике." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Имя" @@ -435,22 +631,22 @@ msgstr "Имя" msgid "Network" msgstr "Сеть" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" "Применять правило только для входящих подключений на указанный IP-адрес" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Применять правило только для входящего трафика от этих MAC-адресов." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" "Применять правило только для входящего трафика от этого IP-адреса или " "диапазона адресов." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -458,13 +654,23 @@ msgstr "" "Применять правило только для входящего трафика от указанного порта или " "диапазона портов клиентского хоста" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "Исходящее устройство" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "Исходящая зона" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Исходящий трафик" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "Передаёт дополнительные аргументы таблице iptables. Используйте с " @@ -484,12 +690,12 @@ msgstr "" "осторожностью, так как неверные значения могут привести к нарушению работы " "правил межсетевого экрана, полностью открывая доступ ко всем службам системы." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Перенаправление портов" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -497,19 +703,20 @@ msgstr "" "Перенаправленные портов позволяет удалённым компьютерам из Интернета " "соединяться с компьютером или службой внутри частной локальной сети." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Протокол" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Перенаправлять трафик на указанный порт или диапазон портов внутреннего IP-" "адреса" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Перенаправлять трафик на указанный IP-адрес" @@ -538,19 +745,64 @@ msgstr "Использовать маскарадинг только для ук msgid "Restrict Masquerading to given source subnets" msgstr "Использовать маскарадинг только для указанных подсетей-отправителей" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Использовать протокол" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "IP-адрес для перезаписи" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "Перезаписать соответствующий трафик на указанный IP-адрес источника." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" +"Перезаписать соответствующий трафик на указанный порт источника или диапазон " +"портов." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "Порт для перезаписи" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "Перезаписать" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "Перезаписать на %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "Перезаписать на IP-адрес исходящего устройства" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Маршрутизация/NAT offloading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "SNAT — перезаписать на указанный IP-адрес источника или порт" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Суббота" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Программная реализация offloading для маршрутизации/NAT" @@ -559,46 +811,69 @@ msgstr "Программная реализация offloading для маршр msgid "Software flow offloading" msgstr "Программный flow offloading" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "IP-адрес источника" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "MAC-адрес источника" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Адрес источника" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Порт источника" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Зона источника" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" +"Определяет, привязывать ли это правило трафика к конкретному входящему или " +"исходящему сетевому устройству." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" +"Определяет, использовать внешний или внутренний IP-адрес для отраженного " +"трафика." + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Дата начала (год-мес-день)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Время начала (чч.мм.сс)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Дата окончания (год-мес-день)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Время окончания (чч.мм.сс)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Воскресенье" @@ -641,15 +916,18 @@ msgstr "" "различными сетями внутри зоны. <em>'Использовать сети'</em> указывает, какие " "доступные сети являются членами этой зоны." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Четверг" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Временные ограничения" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Время UTC" @@ -669,12 +947,24 @@ msgstr "К %s на <var>этом устройстве</var>" msgid "To %s, %s in %s" msgstr "К %s, %s в %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" +"На %{ipaddr?:любой адрес назначения} %{port?порт %{port}} %{zone?через зону " +"%{zone}} %{device?исходящее устройство %{device}}" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "Помощник отслеживания" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Правила для трафика" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -684,7 +974,8 @@ msgstr "" "зонами, например, запрет трафика между некоторыми хостами или открытие WAN-" "портов маршрутизатора." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Вторник" @@ -692,13 +983,23 @@ msgstr "Вторник" msgid "Unable to save contents: %s" msgstr "Невозможно сохранить содержимое: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "Неизвестный или не установленный помощник «%s»" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "NAT без имени" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Перенаправление без имени" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Правило без имени" @@ -706,6 +1007,14 @@ msgstr "Правило без имени" msgid "Unnamed zone" msgstr "Зона без имени" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "Использовать внешний IP-адрес" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "Использовать внутренний IP-адрес" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -722,6 +1031,10 @@ msgstr "" "Используйте эту опцию для классификации трафика зоны по источнику или " "подсети назначения вместо сети или устройств." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Через %s" @@ -730,14 +1043,24 @@ msgstr "Через %s" msgid "Via %s at %s" msgstr "Через %s, %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Среда" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Дни недели" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Зона ⇒ Перенаправления" @@ -746,28 +1069,36 @@ msgstr "Зона ⇒ Перенаправления" msgid "Zones" msgstr "Зоны" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "принимать" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "любой" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -781,19 +1112,32 @@ msgstr "любой IP-адрес маршрутизатора" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "любой зоны" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "назначить помощника отслеживания соединений" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "день" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "не перезаписывать" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "не отслеживать" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -820,7 +1164,7 @@ msgstr "порт" msgid "ports" msgstr "порты" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -844,6 +1188,18 @@ msgstr "тип" msgid "types" msgstr "типы" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "не определено" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "верная метка брандмауэра" + #~ msgid "Force connection tracking" #~ msgstr "Принудительно включать отслеживание соединений" @@ -872,9 +1228,6 @@ msgstr "типы" #~ msgid "Add and edit..." #~ msgstr "Добавить и редактировать..." -#~ msgid "Do not rewrite" -#~ msgstr "Не перезаписывать" - #~ msgid "External zone" #~ msgstr "Внешняя зона" diff --git a/applications/luci-app-firewall/po/sk/firewall.po b/applications/luci-app-firewall/po/sk/firewall.po index dd2adb61c6..d7f2664659 100644 --- a/applications/luci-app-firewall/po/sk/firewall.po +++ b/applications/luci-app-firewall/po/sk/firewall.po @@ -12,7 +12,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -20,7 +20,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -36,6 +36,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -48,8 +56,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Akcia" @@ -66,8 +75,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -84,15 +94,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -126,7 +154,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -137,18 +165,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -167,6 +216,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -183,12 +236,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -200,6 +254,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -208,16 +266,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -241,11 +300,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -258,11 +321,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -293,8 +357,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -322,12 +391,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -336,32 +405,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -370,6 +467,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -378,32 +479,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -412,31 +591,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -449,28 +638,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -498,19 +688,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -519,46 +752,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -588,15 +840,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -616,19 +871,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -636,13 +902,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -650,6 +926,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -662,6 +946,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -670,14 +958,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -686,28 +984,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -721,19 +1027,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -760,7 +1079,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -783,3 +1102,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/sv/firewall.po b/applications/luci-app-firewall/po/sv/firewall.po index 9262bf8682..1319bdfafe 100644 --- a/applications/luci-app-firewall/po/sv/firewall.po +++ b/applications/luci-app-firewall/po/sv/firewall.po @@ -12,7 +12,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s i %s" @@ -20,7 +20,7 @@ msgstr "%s i %s" msgid "%s%s with %s" msgstr "%s%s med %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%2, %s i %s" @@ -36,6 +36,14 @@ msgstr "<var>%d</var> pkt. per <var>%s</var>, brustna <var>%d</var> pkt." msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> och gränsen till %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -48,8 +56,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Åtgärd" @@ -66,8 +75,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Avancerade inställningar" @@ -84,15 +94,33 @@ msgstr "Tillåt vidarebefordring från <em>källzonerna</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Till vidarebefordring till <em>destinationszonerna:</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Något" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -126,7 +154,7 @@ msgstr "Nätverk som omfattas" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Anpassade regler" @@ -137,18 +165,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "Destinationens IP-adress" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Destinationens adress" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Destinationsport" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Destinationens zon" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -167,6 +216,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "Skriv inte om igen" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -183,12 +236,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Släpp ogiltiga paket" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Aktivera" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -200,6 +254,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "Aktivera loggning i den här zonen" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -208,16 +266,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Extern IP-adress" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Extern port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Extra argument" @@ -241,11 +300,15 @@ msgstr "Brandvägg" msgid "Firewall - Custom Rules" msgstr "Brandvägg - Anpassade regler" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Brandvägg - Vidarebefordring av port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Brandvägg - Trafikregler" @@ -258,11 +321,12 @@ msgstr "Brandvägg - Zoninställningar" msgid "Forward" msgstr "Vidarebefordra" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "Vidarebefordra till" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "Fredag" @@ -293,8 +357,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -322,12 +391,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 och IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Endast IPv4" @@ -336,32 +405,60 @@ msgstr "Endast IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Endast IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Inmatning" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Intern IP-adress" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Intern port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Intern zon" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Begränsa loggmeddelanden" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -370,6 +467,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -378,16 +479,54 @@ msgstr "" msgid "Masquerading" msgstr "Maskering" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Matcha" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Matchar ICMP-typ" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -395,17 +534,57 @@ msgstr "" "Matcha inkommande trafik dirigerad till den angivna destinationsporten eller " "portens räckvidd på den här värden" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Måndag" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Dagar i månaden" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Namn" @@ -414,32 +593,42 @@ msgstr "Namn" msgid "Network" msgstr "Nätverk" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" "Matcha endast inkommande trafik från den här IP-adressen eller räckvidden." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Utmatning" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -452,28 +641,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Vidarebefordringar av port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -501,19 +691,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Begränsa till adressfamilj" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Lördag" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -522,46 +755,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "IP-adress för källa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "MAC-adress för källa" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Adress för källkod" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Startdatum (åååå-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Stopptid (åååå-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Söndag" @@ -591,15 +843,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Torsdag" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Tid enligt UTC" @@ -619,19 +874,30 @@ msgstr "Till %s på <var>den här enheten</var>" msgid "To %s, %s in %s" msgstr "Till %s, %s i %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Trafikregler" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Tisdag" @@ -639,13 +905,23 @@ msgstr "Tisdag" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -653,6 +929,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -665,6 +949,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Via %s" @@ -673,14 +961,24 @@ msgstr "Via %s" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Onsdag" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Veckodagar" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -689,28 +987,36 @@ msgstr "" msgid "Zones" msgstr "Zoner" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "acceptera" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "något" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -724,19 +1030,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "alla zoner" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "spåra inte" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -763,7 +1082,7 @@ msgstr "port" msgid "ports" msgstr "portar" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -787,6 +1106,18 @@ msgstr "typ" msgid "types" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Disable" #~ msgstr "Inaktivera" @@ -799,9 +1130,6 @@ msgstr "" #~ msgid "Add and edit..." #~ msgstr "Lägg till och redigera..." -#~ msgid "Do not rewrite" -#~ msgstr "Skriv inte om igen" - #~ msgid "External zone" #~ msgstr "Extern zon" @@ -835,9 +1163,6 @@ msgstr "" #~ msgid "(Unnamed SNAT)" #~ msgstr "(Namnlös SNAT)" -#~ msgid "Destination IP address" -#~ msgstr "Destinationens IP-adress" - #~ msgid "Match forwarded traffic to the given destination port or port range." #~ msgstr "" #~ "Matcha vidarebefordrad trafik till den angivna destinationsporten eller " diff --git a/applications/luci-app-firewall/po/templates/firewall.pot b/applications/luci-app-firewall/po/templates/firewall.pot index a017aa6648..f11d72686e 100644 --- a/applications/luci-app-firewall/po/templates/firewall.pot +++ b/applications/luci-app-firewall/po/templates/firewall.pot @@ -1,7 +1,7 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -9,7 +9,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -25,6 +25,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -37,8 +45,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "" @@ -55,8 +64,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -73,15 +83,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -115,7 +143,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -126,18 +154,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -156,6 +205,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -172,12 +225,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -189,6 +243,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -197,16 +255,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -230,11 +289,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -247,11 +310,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -282,8 +346,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -311,12 +380,12 @@ msgid "IPv4" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -325,32 +394,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "" @@ -359,6 +456,10 @@ msgstr "" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -367,32 +468,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -401,31 +580,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -438,28 +627,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -487,19 +677,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -508,46 +741,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -577,15 +829,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -605,19 +860,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -625,13 +891,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -639,6 +915,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -651,6 +935,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -659,14 +947,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -675,28 +973,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -710,19 +1016,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -749,7 +1068,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -772,3 +1091,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/tr/firewall.po b/applications/luci-app-firewall/po/tr/firewall.po index 923b5f04ce..71604217cb 100644 --- a/applications/luci-app-firewall/po/tr/firewall.po +++ b/applications/luci-app-firewall/po/tr/firewall.po @@ -12,7 +12,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -20,7 +20,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -36,6 +36,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -48,8 +56,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Eylem" @@ -66,8 +75,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -84,15 +94,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -126,7 +154,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -137,18 +165,39 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -167,6 +216,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -183,12 +236,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -200,6 +254,10 @@ msgstr "" msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -208,16 +266,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -241,11 +300,15 @@ msgstr "" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -258,11 +321,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -293,8 +357,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -322,12 +391,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -336,32 +405,60 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -370,6 +467,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "" @@ -378,32 +479,110 @@ msgstr "" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -412,31 +591,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -449,28 +638,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -498,19 +688,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -519,46 +752,65 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -588,15 +840,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -616,19 +871,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -636,13 +902,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -650,6 +926,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -662,6 +946,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -670,14 +958,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -686,28 +984,36 @@ msgstr "" msgid "Zones" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -721,19 +1027,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -760,7 +1079,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -783,3 +1102,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/uk/firewall.po b/applications/luci-app-firewall/po/uk/firewall.po index 31fd951b2d..209bfbfabc 100644 --- a/applications/luci-app-firewall/po/uk/firewall.po +++ b/applications/luci-app-firewall/po/uk/firewall.po @@ -13,7 +13,7 @@ msgstr "" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s у %s" @@ -21,7 +21,7 @@ msgstr "%s у %s" msgid "%s%s with %s" msgstr "%s%s із %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s у %s" @@ -37,6 +37,14 @@ msgstr "<var>%d</var> пакетів за <var>%s</var>, підряд <var>%d</v msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> з лімітом %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "Приймати переспрямовування" @@ -49,8 +57,9 @@ msgstr "Приймати вхідний" msgid "Accept output" msgstr "Приймати вихідний" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Дія" @@ -73,8 +82,9 @@ msgstr "" "зони, наприклад, <code>-p tcp --sport 443</code>, щоб зіставляти лише " "вхідний трафік HTTPS." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "Додаткові параметри" @@ -91,15 +101,33 @@ msgstr "Дозволити переспрямовування від <em>зон msgid "Allow forward to <em>destination zones</em>:" msgstr "Дозволити переспрямовування до <em>зон призначення</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "Будь-який" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "Будь-який день" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "Автоматичне призначення помічника" @@ -140,7 +168,7 @@ msgstr "Охоплені мережі" msgid "Covered subnets" msgstr "Охоплені підмережі" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "Настроювані правила" @@ -155,18 +183,39 @@ msgstr "" "виконуються після кожного перезавантаження брандмауера, відразу після " "завантаження типового набору правил." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Адреса призначення" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Порт призначення" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "Зона призначення" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "Відкидати переспрямовування" @@ -188,6 +237,10 @@ msgstr "" "зі станом відслідковування з'єднань <em>invalid</em>. Це може знадобитися " "для складних налаштувань асиметричного маршруту." +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "Не відслідковувати переспрямовування" @@ -204,12 +257,13 @@ msgstr "Не відслідковувати вихідний" msgid "Drop invalid packets" msgstr "Відкидати помилкові пакети" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Увімкнути" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "Увімкнути NAT Loopback" @@ -221,6 +275,10 @@ msgstr "Увімкнути захист від SYN-flood" msgid "Enable logging on this zone" msgstr "Увімкнути реєстрування у цій зоні" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "Експериментальна функція. Не повністю сумісно з QoS / SQM." @@ -231,16 +289,17 @@ msgstr "" "В явному вигляді дозволені помічники відслідковування з'єднань для трафіку " "зони" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "Зовнішня IP-адреса" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "Зовнішній порт" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "Додаткові аргументи" @@ -264,11 +323,15 @@ msgstr "Брандмауер" msgid "Firewall - Custom Rules" msgstr "Брандмауер — Настроювані правила" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "Брандмауер — Переспрямовування портів" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "Брандмауер — Правила трафіка" @@ -281,11 +344,12 @@ msgstr "Брандмауер — Параметри зон" msgid "Forward" msgstr "Переспрямовування" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "переспрямовування до" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "П'ятниця" @@ -316,8 +380,13 @@ msgstr "Від %s на <var>цьому пристрої</var> з джерело msgid "From %s on <var>this device</var> with source %s and %s" msgstr "Від %s на <var>цьому пристрої</var> з джерелом %s та %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -345,12 +414,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 та IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "Лише IPv4" @@ -359,32 +428,60 @@ msgstr "Лише IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "Лише IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Вхідний" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "Внутрішня IP-адреса" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "Внутрішній порт" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "Внутрішня зона" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "Обмеження повідомлень журналу" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC-адреса" @@ -393,6 +490,10 @@ msgstr "MAC-адреса" msgid "MACs" msgstr "MAC-адреси" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "Затискання MSS" @@ -401,16 +502,54 @@ msgstr "Затискання MSS" msgid "Masquerading" msgstr "Підміна" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "Зіставляти" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "Зіставляти ICMP типу" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" @@ -418,17 +557,57 @@ msgstr "" "Зіставляти вхідний трафік, спрямований на заданий порт призначення або " "діапазон портів цього вузла" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "Понеділок" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "Дні місяця" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "Ім'я" @@ -437,19 +616,19 @@ msgstr "Ім'я" msgid "Network" msgstr "Мережа" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "Зіставляти тільки вхідний трафік, спрямований на задану IP-адресу." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "Зіставляти тільки вхідний трафік від цих MAC-адрес." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "Зіставляти тільки вхідний трафік від цього IP чи діапазону." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" @@ -457,13 +636,23 @@ msgstr "" "Зіставляти тільки вхідний трафік, що виникає на заданому порту джерела або " "діапазоні портів вузла клієнта" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Вихідний" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" "Передача додаткових аргументів для IPTables. Використовуйте з обережністю!" @@ -482,12 +671,12 @@ msgstr "" "особливою обережністю, оскільки невірні значення можуть призвести до " "порушення набору правил брандмауера, повністю відкриваючи всі служби." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "Переспрямовування портів" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." @@ -495,18 +684,19 @@ msgstr "" "Переспрямовування портів дозволяє віддаленим комп'ютерам з Інтернету " "підключатися до певного комп'ютера або служби у приватній мережі." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Протокол" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" "Переспрямувати відповідний вхідний трафік на заданий порт внутрішнього вузла" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "Переспрямувати відповідний вхідний трафік на заданий внутрішній вузол" @@ -534,19 +724,62 @@ msgstr "Обмежити підміну заданими підмережами msgid "Restrict Masquerading to given source subnets" msgstr "Обмежити підміну заданими підмережами джерела" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "Обмежити сімейство протоколів" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Розвантаження маршрутизації/NAT" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "Субота" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "Програмне розвантаження для маршрутизації/NAT" @@ -555,46 +788,65 @@ msgstr "Програмне розвантаження для маршрутиз msgid "Software flow offloading" msgstr "Програмне розвантаження потоку" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "IP-адреса джерела" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "MAC-адреса джерела" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "Адреса джерела" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Порт джерела" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "Зона джерела" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "Дата початку (рррр-мм-дд)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "Час початку (гг:хх:сс)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "Дата зупинки (рррр-мм-дд)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "Час зупинки (гг:хх:сс)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "Неділя" @@ -638,15 +890,18 @@ msgstr "" "спрямовування трафіку між різними мережами в межах зони. Пункт <em>Покриті " "мережі</em> визначає, які доступні мережі є членами цієї зони." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "Четвер" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "Часові обмеження" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "Час в UTC" @@ -666,12 +921,22 @@ msgstr "%s на <var>цього пристрою</var>" msgid "To %s, %s in %s" msgstr "%s, %s у %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "Правила трафіка" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -681,7 +946,8 @@ msgstr "" "різними зонами, наприклад, відхиляти трафік між певними вузлами або відкрити " "порти WAN на маршрутизаторі." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "Вівторок" @@ -689,13 +955,23 @@ msgstr "Вівторок" msgid "Unable to save contents: %s" msgstr "Не вдалося зберегти вміст: %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "Переспрямовування без назви" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "Правило без назви" @@ -703,6 +979,14 @@ msgstr "Правило без назви" msgid "Unnamed zone" msgstr "Зона без назви" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -719,6 +1003,10 @@ msgstr "" "Використовуйте цей параметр для класифікації трафіку зон за підмережею " "джерела чи призначення замість мереж або пристроїв." +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "Через %s" @@ -727,14 +1015,24 @@ msgstr "Через %s" msgid "Via %s at %s" msgstr "Через %s на %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "Середа" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "Дні тижня" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "Зона ⇒ Переспрямовування" @@ -743,28 +1041,36 @@ msgstr "Зона ⇒ Переспрямовування" msgid "Zones" msgstr "Зони" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "приймати" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "будь-який" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -778,19 +1084,32 @@ msgstr "будь-який IP роутера" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "будь-якій зоні" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "день" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "не відстеж." -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -817,7 +1136,7 @@ msgstr "порт" msgid "ports" msgstr "порти" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -841,6 +1160,18 @@ msgstr "типом" msgid "types" msgstr "типами" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "Примусове відслідковування з'єднань" diff --git a/applications/luci-app-firewall/po/vi/firewall.po b/applications/luci-app-firewall/po/vi/firewall.po index 5ecf06b191..39a6ce0874 100644 --- a/applications/luci-app-firewall/po/vi/firewall.po +++ b/applications/luci-app-firewall/po/vi/firewall.po @@ -16,7 +16,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "" @@ -24,7 +24,7 @@ msgstr "" msgid "%s%s with %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "" @@ -40,6 +40,14 @@ msgstr "" msgid "<var>%s</var> and limit to %s" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "" @@ -52,8 +60,9 @@ msgstr "" msgid "Accept output" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "Hành động" @@ -70,8 +79,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "" @@ -88,15 +98,33 @@ msgstr "" msgid "Allow forward to <em>destination zones</em>:" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -130,7 +158,7 @@ msgstr "" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "" @@ -141,19 +169,40 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "Địa chỉ điểm đến" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "Cổng điểm đến" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 #, fuzzy msgid "Destination zone" msgstr "Điểm đến" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "" @@ -172,6 +221,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "" @@ -188,12 +241,13 @@ msgstr "" msgid "Drop invalid packets" msgstr "Bỏ qua nhưng gói không hợp lý" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "Kích hoạt" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "" @@ -206,6 +260,10 @@ msgstr "SYN-flood bảo vệ " msgid "Enable logging on this zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "" @@ -214,16 +272,17 @@ msgstr "" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "External port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "" @@ -247,11 +306,15 @@ msgstr "Firewall" msgid "Firewall - Custom Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "" @@ -264,11 +327,12 @@ msgstr "" msgid "Forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "" @@ -299,8 +363,13 @@ msgstr "" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -328,12 +397,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "" @@ -342,34 +411,62 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "Input" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 #, fuzzy msgid "Internal IP address" msgstr "Internal address" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 #, fuzzy msgid "Internal port" msgstr "External port" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -378,6 +475,10 @@ msgstr "MAC" msgid "MACs" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 #, fuzzy msgid "MSS clamping" @@ -387,32 +488,110 @@ msgstr "MSS Clamping" msgid "Masquerading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "" @@ -421,31 +600,41 @@ msgstr "" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "Output" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -458,28 +647,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "Giao thức" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "" @@ -507,19 +697,62 @@ msgstr "" msgid "Restrict Masquerading to given source subnets" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "" @@ -528,49 +761,68 @@ msgstr "" msgid "Software flow offloading" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 #, fuzzy msgid "Source IP address" msgstr "Đỉa chỉ MAC nguồn" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 #, fuzzy msgid "Source address" msgstr "Đỉa chỉ MAC nguồn" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "Cổng nguồn" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 #, fuzzy msgid "Source zone" msgstr "Cổng nguồn" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "" @@ -602,15 +854,18 @@ msgid "" "networks</em> specifies which available networks are members of this zone." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "" @@ -630,19 +885,30 @@ msgstr "" msgid "To %s, %s in %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "" @@ -650,13 +916,23 @@ msgstr "" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "" @@ -664,6 +940,14 @@ msgstr "" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -676,6 +960,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "" @@ -684,14 +972,24 @@ msgstr "" msgid "Via %s at %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "" @@ -700,28 +998,36 @@ msgstr "" msgid "Zones" msgstr "Zones" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "chấp nhận" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -735,19 +1041,32 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -774,7 +1093,7 @@ msgstr "" msgid "ports" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -797,3 +1116,15 @@ msgstr "" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:209 msgid "types" msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" diff --git a/applications/luci-app-firewall/po/zh-cn/firewall.po b/applications/luci-app-firewall/po/zh-cn/firewall.po index 786cfcdd44..9270c8f660 100644 --- a/applications/luci-app-firewall/po/zh-cn/firewall.po +++ b/applications/luci-app-firewall/po/zh-cn/firewall.po @@ -16,7 +16,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s 位于 %s" @@ -24,7 +24,7 @@ msgstr "%s 位于 %s" msgid "%s%s with %s" msgstr "%s%s 和 %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s 位于 %s" @@ -40,6 +40,14 @@ msgstr "<var>%d</var> 数据包/<var>%s</var>,突发 <var>%d</var> 数据包 msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> 并限制到 %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "接受转发" @@ -52,8 +60,9 @@ msgstr "接受入站" msgid "Accept output" msgstr "接受出站" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "动作" @@ -74,8 +83,9 @@ msgstr "" "附加 <em>iptables</em> 参数对区域入流量分类。如:<code>-p tcp --sport 443</" "code> 仅匹配入站 HTTPS 流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "高级设置" @@ -92,15 +102,33 @@ msgstr "允许来自<em>源区域</em>的转发:" msgid "Allow forward to <em>destination zones</em>:" msgstr "允许转发到<em>目标区域</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "任何" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "每天" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "自动助手分配" @@ -134,7 +162,7 @@ msgstr "涵盖的网络" msgid "Covered subnets" msgstr "涵盖的子网" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "自定义规则" @@ -147,18 +175,39 @@ msgstr "" "自定义规则允许您执行不属于防火墙框架的任意 iptables 命令。每次重启防火墙时," "在默认的规则运行后这些命令将立即执行。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "目标 IP 地址" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "目标地址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "目标端口" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "目标区域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "丢弃转发" @@ -179,6 +228,10 @@ msgstr "" "不安装额外的规则以拒绝 conntrack 状态为<em>无效</em>的转发流量。对复杂的非对" "称路由这可能是必需的设置。" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "不重写" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "不跟踪转发" @@ -195,12 +248,13 @@ msgstr "不跟踪出站" msgid "Drop invalid packets" msgstr "丢弃无效数据包" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "启用" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "启用 NAT 环回" @@ -212,6 +266,10 @@ msgstr "启用 SYN-flood 防御" msgid "Enable logging on this zone" msgstr "启用此区域的日志记录" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "实验特性。与 QoS/SQM 不完全兼容。" @@ -220,16 +278,17 @@ msgstr "实验特性。与 QoS/SQM 不完全兼容。" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "为区域流量明确选择允许的连接跟踪助手" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "外部 IP 地址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "外部端口" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "额外参数" @@ -253,11 +312,15 @@ msgstr "防火墙" msgid "Firewall - Custom Rules" msgstr "防火墙 - 自定义规则" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "防火墙 - 端口转发" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "防火墙 - 通信规则" @@ -270,11 +333,12 @@ msgstr "防火墙 - 区域设置" msgid "Forward" msgstr "转发" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "转发到" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "星期五" @@ -305,8 +369,13 @@ msgstr "来自 %s 位于<var>本设备</var>源于 %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "来自 %s 位于<var>本设备</var>源端口 %s 源 MAC %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -334,12 +403,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 和 IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "仅 IPv4" @@ -348,32 +417,60 @@ msgstr "仅 IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "仅 IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "入站数据" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "内部 IP 地址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "内部端口" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "内部区域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "限制日志信息" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -382,6 +479,10 @@ msgstr "MAC" msgid "MACs" msgstr "MAC" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS 钳制" @@ -390,32 +491,110 @@ msgstr "MSS 钳制" msgid "Masquerading" msgstr "IP 动态伪装" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "匹配规则" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "匹配 ICMP 类型" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "匹配指向此主机上指定目标端口或目标端口范围的入站流量" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "星期一" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "日期" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "名称" @@ -424,31 +603,41 @@ msgstr "名称" msgid "Network" msgstr "网络" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "仅匹配指定目的 IP 地址的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "仅匹配来自这些 MAC 的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "仅匹配来自此 IP 或 IP 范围的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "仅匹配源自客户端主机上给定源端口或源端口范围的入站流量" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "出站数据" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "传递到 iptables 的额外参数。小心使用!" @@ -464,29 +653,30 @@ msgstr "" "他条件来匹配数据包。使用这些选项应格外小心,因为无效值可能会破坏防火墙规则集" "而对外暴露所有服务。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "端口转发" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "" "端口转发允许 Internet 上的远程计算机连接到内部网络中的特定计算机或服务。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "协议" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "重定向匹配的入站流量到内部主机的端口" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "重定向匹配的入站流量到指定的内部主机" @@ -514,19 +704,62 @@ msgstr "要限制 IP 动态伪装的目标子网" msgid "Restrict Masquerading to given source subnets" msgstr "要限制 IP 动态伪装的源子网" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "限制地址" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Routing/NAT 分载" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "星期六" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "基于软件的 Routing/NAT 分载" @@ -535,46 +768,65 @@ msgstr "基于软件的 Routing/NAT 分载" msgid "Software flow offloading" msgstr "软件流量分载" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "源 IP 地址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "源 MAC 地址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "源地址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "源端口" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "源区域" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "开始日期(yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "开始时间(hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "停止日期(yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "停止时间(hh.mm.ss)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "星期日" @@ -611,15 +863,18 @@ msgstr "" "域入站和出站流量的默认策略,<em>转发</em>选项描述该区域内不同网络之间的流量转" "发策略。<em>涵盖的网络</em>指定从属于这个区域的网络。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "星期四" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "时间限制" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "UTC 时间" @@ -639,12 +894,22 @@ msgstr "到 %s 位于<var>本设备</var>" msgid "To %s, %s in %s" msgstr "到 %s, %s 位于 %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "通信规则" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -653,7 +918,8 @@ msgstr "" "通信规则定义了不同区域间的数据包传输策略,例如:拒绝一些主机之间的通信,开放" "路由器 WAN 上的端口。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "星期二" @@ -661,13 +927,23 @@ msgstr "星期二" msgid "Unable to save contents: %s" msgstr "无法保存内容:%s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "未命名转发" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "未命名规则" @@ -675,6 +951,14 @@ msgstr "未命名规则" msgid "Unnamed zone" msgstr "未命名区域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -687,6 +971,10 @@ msgid "" "instead of networks or devices." msgstr "此选项可对源或目标子网而非网络或设备进行区域流量分类。" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "通过 %s" @@ -695,14 +983,24 @@ msgstr "通过 %s" msgid "Via %s at %s" msgstr "通过 %s 在 %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "星期三" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "星期" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "区域 ⇒ 转发" @@ -711,28 +1009,36 @@ msgstr "区域 ⇒ 转发" msgid "Zones" msgstr "区域" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "接受" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "任意" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -746,19 +1052,32 @@ msgstr "所有路由 IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "所有区域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "日" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "不跟踪" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -785,7 +1104,7 @@ msgstr "端口" msgid "ports" msgstr "端口" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -809,6 +1128,18 @@ msgstr "类型" msgid "types" msgstr "类型" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "强制连接追踪" @@ -835,9 +1166,6 @@ msgstr "类型" #~ msgid "Add and edit..." #~ msgstr "添加并编辑…" -#~ msgid "Do not rewrite" -#~ msgstr "不重写" - #~ msgid "External zone" #~ msgstr "外部区域" @@ -880,9 +1208,6 @@ msgstr "类型" #~ msgid "(Unnamed SNAT)" #~ msgstr "(未命名 SNAT)" -#~ msgid "Destination IP address" -#~ msgstr "目标 IP 地址" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "端口触发" diff --git a/applications/luci-app-firewall/po/zh-tw/firewall.po b/applications/luci-app-firewall/po/zh-tw/firewall.po index 4a0d615dd2..9d35ee5ebf 100644 --- a/applications/luci-app-firewall/po/zh-tw/firewall.po +++ b/applications/luci-app-firewall/po/zh-tw/firewall.po @@ -13,7 +13,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 msgid "%s in %s" msgstr "%s 位於 %s" @@ -21,7 +21,7 @@ msgstr "%s 位於 %s" msgid "%s%s with %s" msgstr "%s%s 和 %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:144 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:152 msgid "%s, %s in %s" msgstr "%s, %s 位於 %s" @@ -37,6 +37,14 @@ msgstr "<var>%d</var> 資料包/<var>%s</var>,突發 <var>%d</var> 資料包 msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> 並限制到 %s" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:280 +msgid "A rewrite IP must be specified!" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:267 +msgid "ACCEPT - Disable address rewriting" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:293 msgid "Accept forward" msgstr "接受轉發" @@ -49,8 +57,9 @@ msgstr "接受入站" msgid "Accept output" msgstr "接受出站" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:354 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:388 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:262 msgid "Action" msgstr "行動" @@ -67,8 +76,9 @@ msgid "" "e.g. <code>-p tcp --sport 443</code> to only match inbound HTTPS traffic." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:109 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:178 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:163 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:78 msgid "Advanced Settings" msgstr "高階設定" @@ -85,15 +95,33 @@ msgstr "允許從<em>源區域</em>轉發:" msgid "Allow forward to <em>destination zones</em>:" msgstr "允許轉發到<em>目標區域</em>:" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:244 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:278 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:198 msgid "Any" msgstr "任何" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:370 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:386 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:454 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:470 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:329 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:345 msgid "Any day" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:369 +msgid "" +"Apply a bitwise XOR of the given value and the existing mark value on " +"established connections. Format is value[/mask]. If a mask is specified then " +"those bits set in the mask are zeroed out." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Apply the given DSCP class or value to established connections." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Assign the specified connection tracking helper to matched traffic." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:214 msgid "Automatic helper assignment" msgstr "" @@ -127,7 +155,7 @@ msgstr "覆蓋網路" msgid "Covered subnets" msgstr "" -#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:53 msgid "Custom Rules" msgstr "自訂規則" @@ -140,18 +168,39 @@ msgstr "" "自訂規則允許您執行不屬於防火牆框架的任意 iptables 指令。每次重啟防火牆時,在" "預設的規則執行後這些指令將立即執行。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:339 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:398 +msgid "DSCP classification" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:349 +msgid "DSCP mark required" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:238 +msgid "Destination IP address" +msgstr "目標 IP 位址" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 msgid "Destination address" msgstr "目標位址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:345 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:379 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:251 msgid "Destination port" msgstr "目標埠" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:333 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:367 msgid "Destination zone" msgstr "目標區域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:256 +msgid "Device name" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:299 msgid "Discard forward" msgstr "丟棄轉發" @@ -170,6 +219,10 @@ msgid "" "<em>invalid</em>. This may be required for complex asymmetric route setups." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:125 +msgid "Do not rewrite" +msgstr "不重寫" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:297 msgid "Do not track forward" msgstr "不跟蹤轉發" @@ -186,12 +239,13 @@ msgstr "不跟蹤出站" msgid "Drop invalid packets" msgstr "丟棄無效資料包" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:149 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:221 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:157 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:190 msgid "Enable" msgstr "啟用" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:262 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:270 msgid "Enable NAT Loopback" msgstr "啟用 NAT 環回" @@ -203,6 +257,10 @@ msgstr "啟用 SYN-flood 防禦" msgid "Enable logging on this zone" msgstr "啟用此區域的日誌記錄" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "Expecting: %s" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:54 msgid "Experimental feature. Not fully compatible with QoS/SQM." msgstr "實驗特性。與 QoS/SQM 不完全相容。" @@ -211,16 +269,17 @@ msgstr "實驗特性。與 QoS/SQM 不完全相容。" msgid "Explicitly choses allowed connection tracking helpers for zone traffic" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:218 msgid "External IP address" msgstr "外部 IP 位址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:231 msgid "External port" msgstr "外部埠" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:267 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:362 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:306 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:446 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:320 msgid "Extra arguments" msgstr "附加引數" @@ -244,11 +303,15 @@ msgstr "防火牆" msgid "Firewall - Custom Rules" msgstr "防火牆 - 自訂規則" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:92 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:154 +msgid "Firewall - NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 msgid "Firewall - Port Forwards" msgstr "防火牆 - 埠轉發" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:160 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:169 msgid "Firewall - Traffic Rules" msgstr "防火牆 - 通訊規則" @@ -261,11 +324,12 @@ msgstr "防火牆 - 區域設定" msgid "Forward" msgstr "轉發" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:135 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:143 msgid "Forward to" msgstr "轉發到" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:460 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:335 msgid "Friday" msgstr "星期五" @@ -296,8 +360,13 @@ msgstr "來自 %s 位於<var>本裝置</var>源於 %s" msgid "From %s on <var>this device</var> with source %s and %s" msgstr "來自 %s 位於<var>本裝置</var>源埠 %s 源 MAC %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:100 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:168 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:93 +msgid "From %{ipaddr?:any host} %{port?with source %{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:162 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:31 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:77 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:16 @@ -325,12 +394,12 @@ msgid "IPv4" msgstr "IPv4" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:220 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:267 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:192 msgid "IPv4 and IPv6" msgstr "IPv4 和 IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:234 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:268 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:193 msgid "IPv4 only" msgstr "僅 IPv4" @@ -339,32 +408,60 @@ msgstr "僅 IPv4" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:235 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:269 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:194 msgid "IPv6 only" msgstr "僅 IPv6" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:239 +msgid "Inbound device" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:39 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:115 msgid "Input" msgstr "入站資料" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:239 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:247 msgid "Internal IP address" msgstr "內部 IP 位址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:251 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:259 msgid "Internal port" msgstr "內部埠" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:233 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:241 msgid "Internal zone" msgstr "內部區域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:357 +msgid "Invalid DSCP mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:425 +msgid "Invalid limit value" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:435 +msgid "Limit burst" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:227 msgid "Limit log messages" msgstr "限制日誌資訊" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:401 +msgid "Limit matching" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:402 +msgid "Limits traffic matching to the specified rate." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "Loopback source IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:96 msgid "MAC" msgstr "MAC" @@ -373,6 +470,10 @@ msgstr "MAC" msgid "MACs" msgstr "MAC" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:266 +msgid "MASQUERADE - Automatically rewrite to outbound interface IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:134 msgid "MSS clamping" msgstr "MSS 鉗制" @@ -381,32 +482,110 @@ msgstr "MSS 鉗制" msgid "Masquerading" msgstr "IP 動態偽裝" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:125 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:205 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:133 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:214 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:174 msgid "Match" msgstr "匹配規則" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:254 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:84 +msgid "" +"Match %{protocol?%{family} %{protocol} traffic:any %{family} traffic} %{mark?" +"with firewall mark %{mark}} %{limit?limited to %{limit}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:315 +msgid "Match DSCP" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:288 msgid "Match ICMP type" msgstr "匹配 ICMP 型別" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:224 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:236 +msgid "Match device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:239 +msgid "Match forwarded traffic directed at the given IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:252 +msgid "" +"Match forwarded traffic directed at the given destination port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:215 +msgid "Match forwarded traffic from this IP or range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:228 +msgid "" +"Match forwarded traffic originating from the given source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:232 msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "匹配指向此主機上指定目標埠或目標埠範圍的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:372 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Match mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:284 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:423 +msgid "Match traffic using the specified connection tracking helper." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:371 +msgid "Matches a specific firewall mark or a range of different marks." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:311 +msgid "Matches forwarded traffic using the specified outbound network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:316 +msgid "Matches traffic carrying the specified DSCP marking." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:436 +msgid "" +"Maximum initial number of packets to match: this number gets recharged by " +"one every time the limit specified above is not reached, up to this number." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:456 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:331 msgid "Monday" msgstr "星期一" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:466 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:341 msgid "Month Days" msgstr "日期" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:121 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:201 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:227 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:157 +#: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:43 +msgid "NAT Rules" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:155 +msgid "" +"NAT rules allow fine grained control over the source IP to use for outbound " +"or forwarded traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:129 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:210 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:170 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:93 msgid "Name" msgstr "名字" @@ -415,31 +594,41 @@ msgstr "名字" msgid "Network" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:211 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:219 msgid "Only match incoming traffic directed at the given IP address." msgstr "僅匹配指定目的 IP 位址的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:174 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:182 msgid "Only match incoming traffic from these MACs." msgstr "僅匹配來自這些 MAC 的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:187 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:195 msgid "Only match incoming traffic from this IP or range." msgstr "僅匹配來自此 IP 或 IP 範圍的入站流量。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:200 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:208 msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "僅匹配源自客戶端主機上給定源埠或源埠範圍的入站流量。" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:310 +msgid "Outbound device" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:207 +msgid "Outbound zone" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:40 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:116 msgid "Output" msgstr "出站資料" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:268 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:363 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:447 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:321 msgid "Passes additional arguments to iptables. Use with care!" msgstr "傳遞到 iptables 的額外引數。小心使用!" @@ -452,28 +641,29 @@ msgid "" "all services." msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:95 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:103 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:25 msgid "Port Forwards" msgstr "埠轉發" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:93 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:101 msgid "" "Port forwarding allows remote computers on the Internet to connect to a " "specific computer or service within the private LAN." msgstr "埠轉發允許 Internet 上的遠端計算機連線到內部網路中的特定計算機或服務。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:154 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:241 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:162 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:275 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:195 msgid "Protocol" msgstr "協議" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:252 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:260 msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "重定向匹配的入站流量到內部主機的埠" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:240 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:248 msgid "Redirect matched incoming traffic to the specified internal host" msgstr "重定向匹配的入站流量到指定的內部主機" @@ -501,19 +691,62 @@ msgstr "要限制 IP 動態偽裝的目標子網" msgid "Restrict Masquerading to given source subnets" msgstr "要限制 IP 動態偽裝的源子網" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:230 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:264 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:191 msgid "Restrict to address family" msgstr "限制位址" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:269 +msgid "Rewrite IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:270 +msgid "Rewrite matched traffic to the specified source IP address." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:300 +msgid "Rewrite matched traffic to the specified source port or port range." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:299 +msgid "Rewrite port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:184 +msgid "Rewrite to" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:116 +msgid "Rewrite to %{ipaddr?%{port?%{ipaddr}, %{port}:%{ipaddr}}:%{port}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:122 +msgid "Rewrite to outbound device IP" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:53 msgid "Routing/NAT Offloading" msgstr "Routing/NAT 分載" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:377 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:265 +msgid "SNAT - Rewrite to specific source IP or port" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:461 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:336 msgid "Saturday" msgstr "星期六" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "Set mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:370 +msgid "" +"Set the given mark value on established connections. Format is value[/mask]. " +"If a mask is specified then only those bits set in the mask are modified." +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:61 msgid "Software based offloading for routing/NAT" msgstr "基於軟體的 Routing/NAT 分載" @@ -522,46 +755,65 @@ msgstr "基於軟體的 Routing/NAT 分載" msgid "Software flow offloading" msgstr "軟體流量分載" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:194 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:214 msgid "Source IP address" msgstr "源 IP 位址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:173 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:307 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:181 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:341 msgid "Source MAC address" msgstr "源 MAC 位址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:318 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:352 msgid "Source address" msgstr "源位址" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:324 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:207 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:227 msgid "Source port" msgstr "源埠" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:167 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:301 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:175 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:335 msgid "Source zone" msgstr "源區域" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:401 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:257 +msgid "" +"Specifies whether to tie this traffic rule to a specific inbound or outbound " +"network device." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:275 +msgid "" +"Specifies whether to use the external or the internal IP address for " +"reflected traffic." +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:485 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:360 msgid "Start Date (yyyy-mm-dd)" msgstr "開始日期(yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:477 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:352 msgid "Start Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:405 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:489 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:364 msgid "Stop Date (yyyy-mm-dd)" msgstr "停止日期(yyyy-mm-dd)" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:481 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:356 msgid "Stop Time (hh.mm.ss)" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:371 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:455 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:330 msgid "Sunday" msgstr "星期日" @@ -598,15 +850,18 @@ msgstr "" "域入站和出站流量的預設策略,<em>轉發</em>選項描述該區域內不同網路之間的流量轉" "發策略。<em>覆蓋網路</em>指定從屬於這個區域的網路。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:375 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:459 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:334 msgid "Thursday" msgstr "星期四" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:179 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:164 msgid "Time Restrictions" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:409 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:493 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:368 msgid "Time in UTC" msgstr "UTC 時間" @@ -626,12 +881,22 @@ msgstr "到 %s 位於<var>本裝置</var>" msgid "To %s, %s in %s" msgstr "到 %s, %s 位於 %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:163 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:103 +msgid "" +"To %{ipaddr?:any destination} %{port?at %{port}} %{zone?via zone %{zone}} " +"%{device?egress device %{device}}" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:416 +msgid "Tracking helper" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:172 #: applications/luci-app-firewall/root/usr/share/luci/menu.d/luci-app-firewall.json:34 msgid "Traffic Rules" msgstr "通訊規則" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:161 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:170 msgid "" "Traffic rules define policies for packets traveling between different zones, " "for example to reject traffic between certain hosts or to open WAN ports on " @@ -640,7 +905,8 @@ msgstr "" "通訊規則定義了不同區域間的資料包傳輸策略,例如:拒絕一些主機之間的通訊,開放" "路由器 WAN 上的埠。" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:373 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:457 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:332 msgid "Tuesday" msgstr "星期二" @@ -648,13 +914,23 @@ msgstr "星期二" msgid "Unable to save contents: %s" msgstr "" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:108 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:122 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:299 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:438 +msgid "Unknown or not installed conntrack helper \"%s\"" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:167 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:171 +msgid "Unnamed NAT" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:116 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:130 msgid "Unnamed forward" msgstr "未命名轉發" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:177 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:202 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:211 msgid "Unnamed rule" msgstr "未命名規則" @@ -662,6 +938,14 @@ msgstr "未命名規則" msgid "Unnamed zone" msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:279 +msgid "Use external IP address" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:278 +msgid "Use internal IP address" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:181 msgid "" "Use this option to classify zone traffic by raw, non-<em>uci</em> managed " @@ -674,6 +958,10 @@ msgid "" "instead of networks or devices." msgstr "" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:383 +msgid "Valid firewall mark required" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:72 msgid "Via %s" msgstr "通過 %s" @@ -682,14 +970,24 @@ msgstr "通過 %s" msgid "Via %s at %s" msgstr "通過 %s 在 %s" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:374 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:458 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:333 msgid "Wednesday" msgstr "星期三" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:366 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:450 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:325 msgid "Week Days" msgstr "星期" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:397 +msgid "XOR firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:368 +msgid "XOR mark" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:107 msgid "Zone ⇒ Forwardings" msgstr "區域 ⇒ 轉發" @@ -698,28 +996,36 @@ msgstr "區域 ⇒ 轉發" msgid "Zones" msgstr "區域" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:358 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:392 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:47 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:123 msgid "accept" msgstr "接受" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:178 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:191 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:204 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:215 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:255 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:259 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:310 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:321 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:327 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:342 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:348 +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:320 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:186 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:199 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:212 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:223 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:263 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:286 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:293 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:344 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:355 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:361 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:376 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:382 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:418 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:425 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:219 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:232 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:243 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:255 msgid "any" msgstr "所有" #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:53 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:139 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:147 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:58 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:85 msgid "any host" @@ -733,19 +1039,32 @@ msgstr "所有路由 IP" #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:182 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:52 -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:138 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/forwards.js:146 msgid "any zone" msgstr "所有區域" +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:396 +msgid "apply firewall mark" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:395 +msgid "assign conntrack helper" +msgstr "" + #: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:267 msgid "day" msgstr "日" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:360 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:273 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js:303 +msgid "do not rewrite" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:394 msgid "don't track" msgstr "不跟蹤" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:357 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:391 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:46 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:122 msgid "drop" @@ -772,7 +1091,7 @@ msgstr "埠" msgid "ports" msgstr "埠" -#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:359 +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:393 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:45 #: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/zones.js:121 msgid "reject" @@ -796,6 +1115,18 @@ msgstr "型別" msgid "types" msgstr "型別" +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:406 +msgid "unlimited" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js:238 +msgid "unspecified" +msgstr "" + +#: applications/luci-app-firewall/htdocs/luci-static/resources/tools/firewall.js:391 +msgid "valid firewall mark" +msgstr "" + #~ msgid "Force connection tracking" #~ msgstr "強制連線追蹤" @@ -817,9 +1148,6 @@ msgstr "型別" #~ msgid "Add and edit..." #~ msgstr "新增並編輯…" -#~ msgid "Do not rewrite" -#~ msgstr "不重寫" - #~ msgid "External zone" #~ msgstr "外部區域" @@ -862,9 +1190,6 @@ msgstr "型別" #~ msgid "(Unnamed SNAT)" #~ msgstr "(未命名 SNAT)" -#~ msgid "Destination IP address" -#~ msgstr "目標 IP 位址" - #~ msgid "Inter-Zone Forwarding" #~ msgstr "埠觸發" |