同步更新
This commit is contained in:
commit
a707ba1a8c
17
Makefile
Normal file
17
Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
#
|
||||
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=UPnP IGD & PCP/NAT-PMP configuration module | Universal Plug and Play
|
||||
LUCI_DEPENDS:=+luci-base +miniupnpd +rpcd-mod-ucode
|
||||
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
84
htdocs/luci-static/resources/view/status/include/80_upnp.js
Normal file
84
htdocs/luci-static/resources/view/status/include/80_upnp.js
Normal file
@ -0,0 +1,84 @@
|
||||
'use strict';
|
||||
'require baseclass';
|
||||
'require dom';
|
||||
'require rpc';
|
||||
'require uci';
|
||||
|
||||
const callUpnpGetStatus = rpc.declare({
|
||||
object: 'luci.upnp',
|
||||
method: 'get_status',
|
||||
expect: { }
|
||||
});
|
||||
|
||||
const callUpnpDeleteRule = rpc.declare({
|
||||
object: 'luci.upnp',
|
||||
method: 'delete_rule',
|
||||
params: [ 'token' ],
|
||||
expect: { result : "OK" },
|
||||
});
|
||||
|
||||
function handleDelRule(num, ev) {
|
||||
dom.parent(ev.currentTarget, '.tr').style.opacity = 0.5;
|
||||
ev.currentTarget.classList.add('spinning');
|
||||
ev.currentTarget.disabled = true;
|
||||
ev.currentTarget.blur();
|
||||
callUpnpDeleteRule(num);
|
||||
}
|
||||
|
||||
return baseclass.extend({
|
||||
title: _('Active UPnP IGD & PCP/NAT-PMP Port Maps'),
|
||||
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
callUpnpGetStatus(),
|
||||
]);
|
||||
},
|
||||
|
||||
render: function(data) {
|
||||
var table = E('table', { 'class': 'table', 'id': 'upnp_status_table' }, [
|
||||
E('tr', { 'class': 'tr table-titles' }, [
|
||||
E('th', { 'class': 'th' }, _('Client Name')),
|
||||
E('th', { 'class': 'th' }, _('Client Address')),
|
||||
E('th', { 'class': 'th' }, _('Client Port')),
|
||||
E('th', { 'class': 'th' }, _('External Port')),
|
||||
E('th', { 'class': 'th' }, _('Protocol')),
|
||||
E('th', { 'class': 'th right' }, _('Expires')),
|
||||
E('th', { 'class': 'th' }, _('Description')),
|
||||
E('th', { 'class': 'th cbi-section-actions' }, '')
|
||||
])
|
||||
]);
|
||||
|
||||
var rules = Array.isArray(data[0].rules) ? data[0].rules : [];
|
||||
|
||||
var rows = rules.map(function(rule) {
|
||||
const padnum = (num, length) => num.toString().padStart(length, "0");
|
||||
const expires_sec = rule?.expires || 0;
|
||||
const hour = Math.floor(expires_sec / 3600);
|
||||
const minute = Math.floor((expires_sec % 3600) / 60);
|
||||
const second = Math.floor(expires_sec % 60);
|
||||
const expires_str =
|
||||
hour > 0 ? `${hour}h ${padnum(minute, 2)}m ${padnum(second, 2)}s` :
|
||||
minute > 0 ? `${minute}m ${padnum(second, 2)}s` :
|
||||
expires_sec > 0 ? `${second}s` :
|
||||
'';
|
||||
|
||||
return [
|
||||
rule.host_hint || _('Unknown'),
|
||||
rule.intaddr,
|
||||
rule.intport,
|
||||
rule.extport,
|
||||
rule.proto,
|
||||
expires_str,
|
||||
rule.descr,
|
||||
E('button', {
|
||||
'class': 'btn cbi-button-remove',
|
||||
'click': L.bind(handleDelRule, this, rule.num)
|
||||
}, [ _('Delete') ])
|
||||
];
|
||||
});
|
||||
|
||||
cbi_update_table(table, rows, E('em', _('There are no active port maps.')));
|
||||
|
||||
return table;
|
||||
}
|
||||
});
|
251
htdocs/luci-static/resources/view/upnp/upnp.js
Normal file
251
htdocs/luci-static/resources/view/upnp/upnp.js
Normal file
@ -0,0 +1,251 @@
|
||||
'use strict';
|
||||
'require view';
|
||||
'require dom';
|
||||
'require poll';
|
||||
'require uci';
|
||||
'require rpc';
|
||||
'require form';
|
||||
|
||||
const callInitAction = rpc.declare({
|
||||
object: 'luci',
|
||||
method: 'setInitAction',
|
||||
params: [ 'name', 'action' ],
|
||||
expect: { result: false }
|
||||
});
|
||||
|
||||
const callUpnpGetStatus = rpc.declare({
|
||||
object: 'luci.upnp',
|
||||
method: 'get_status',
|
||||
expect: { }
|
||||
});
|
||||
|
||||
const callUpnpDeleteRule = rpc.declare({
|
||||
object: 'luci.upnp',
|
||||
method: 'delete_rule',
|
||||
params: [ 'token' ],
|
||||
expect: { result : "OK" },
|
||||
});
|
||||
|
||||
function handleDelRule(num, ev) {
|
||||
dom.parent(ev.currentTarget, '.tr').style.opacity = 0.5;
|
||||
ev.currentTarget.classList.add('spinning');
|
||||
ev.currentTarget.disabled = true;
|
||||
ev.currentTarget.blur();
|
||||
callUpnpDeleteRule(num);
|
||||
}
|
||||
|
||||
return view.extend({
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
callUpnpGetStatus(),
|
||||
uci.load('upnpd')
|
||||
]);
|
||||
},
|
||||
|
||||
poll_status: function(nodes, data) {
|
||||
|
||||
var rules = Array.isArray(data[0].rules) ? data[0].rules : [];
|
||||
|
||||
var rows = rules.map(function(rule) {
|
||||
const padnum = (num, length) => num.toString().padStart(length, "0");
|
||||
const expires_sec = rule?.expires || 0;
|
||||
const hour = Math.floor(expires_sec / 3600);
|
||||
const minute = Math.floor((expires_sec % 3600) / 60);
|
||||
const second = Math.floor(expires_sec % 60);
|
||||
const expires_str =
|
||||
hour > 0 ? `${hour}h ${padnum(minute, 2)}m ${padnum(second, 2)}s` :
|
||||
minute > 0 ? `${minute}m ${padnum(second, 2)}s` :
|
||||
expires_sec > 0 ? `${second}s` :
|
||||
'';
|
||||
|
||||
return [
|
||||
rule.host_hint || _('Unknown'),
|
||||
rule.intaddr,
|
||||
rule.intport,
|
||||
rule.extport,
|
||||
rule.proto,
|
||||
expires_str,
|
||||
rule.descr,
|
||||
E('button', {
|
||||
'class': 'btn cbi-button-remove',
|
||||
'click': L.bind(handleDelRule, this, rule.num)
|
||||
}, [ _('Delete') ])
|
||||
];
|
||||
});
|
||||
|
||||
cbi_update_table(nodes.querySelector('#upnp_status_table'), rows, E('em', _('There are no active port maps.')));
|
||||
},
|
||||
|
||||
render: function(data) {
|
||||
|
||||
let m, s, o;
|
||||
|
||||
var protocols = '%s & %s/%s'.format(
|
||||
'<a href="https://en.wikipedia.org/wiki/Internet_Gateway_Device_Protocol" target="_blank" rel="noreferrer"><abbr title="UPnP Internet Gateway Device (Control Protocol)">UPnP IGD</abbr></a>',
|
||||
'<a href="https://en.wikipedia.org/wiki/Port_Control_Protocol" target="_blank" rel="noreferrer"><abbr title="Port Control Protocol">PCP</abbr></a>',
|
||||
'<a href="https://en.wikipedia.org/wiki/NAT_Port_Mapping_Protocol" target="_blank" rel="noreferrer"><abbr title="NAT Port Mapping Protocol">NAT-PMP</abbr></a>');
|
||||
m = new form.Map('upnpd', [_('UPnP IGD & PCP/NAT-PMP Service')],
|
||||
_('The %s protocols allow clients on the local network to configure port maps/forwards on the router autonomously.',
|
||||
'The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local network to configure port maps/forwards on the router autonomously.')
|
||||
.format(protocols)
|
||||
);
|
||||
|
||||
s = m.section(form.GridSection, '_active_rules');
|
||||
|
||||
s.render = L.bind(function(view, section_id) {
|
||||
var table = E('table', { 'class': 'table cbi-section-table', 'id': 'upnp_status_table' }, [
|
||||
E('tr', { 'class': 'tr table-titles' }, [
|
||||
E('th', { 'class': 'th' }, _('Client Name')),
|
||||
E('th', { 'class': 'th' }, _('Client Address')),
|
||||
E('th', { 'class': 'th' }, _('Client Port')),
|
||||
E('th', { 'class': 'th' }, _('External Port')),
|
||||
E('th', { 'class': 'th' }, _('Protocol')),
|
||||
E('th', { 'class': 'th right' }, _('Expires')),
|
||||
E('th', { 'class': 'th' }, _('Description')),
|
||||
E('th', { 'class': 'th cbi-section-actions' }, '')
|
||||
])
|
||||
]);
|
||||
|
||||
var rules = Array.isArray(data[0].rules) ? data[0].rules : [];
|
||||
|
||||
var rows = rules.map(function(rule) {
|
||||
return [
|
||||
rule.host_hint || _('Unknown'),
|
||||
rule.intaddr,
|
||||
rule.intport,
|
||||
rule.extport,
|
||||
rule.proto,
|
||||
rule.descr,
|
||||
E('button', {
|
||||
'class': 'btn cbi-button-remove',
|
||||
'click': L.bind(handleDelRule, this, rule.num)
|
||||
}, [ _('Delete') ])
|
||||
];
|
||||
});
|
||||
|
||||
cbi_update_table(table, rows, E('em', _('There are no active port maps.')));
|
||||
|
||||
return E('div', { 'class': 'cbi-section cbi-tblsection' }, [
|
||||
E('h3', _('Active Service Port Maps')), table ]);
|
||||
}, o, this);
|
||||
|
||||
s = m.section(form.NamedSection, 'config', 'upnpd', _('Service Settings'));
|
||||
s.addremove = false;
|
||||
s.tab('setup', _('Service Setup'));
|
||||
s.tab('advanced', _('Advanced Settings'));
|
||||
|
||||
o = s.taboption('setup', form.Flag, 'enabled', _('Start service'),
|
||||
_('Start autonomous port mapping service'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('setup', form.Flag, 'enable_upnp', _('Enable UPnP IGD protocol'));
|
||||
o.default = '1';
|
||||
|
||||
o = s.taboption('setup', form.Flag, 'enable_natpmp', _('Enable PCP/NAT-PMP protocols'));
|
||||
o.default = '1';
|
||||
|
||||
o = s.taboption('setup', form.Flag, 'igdv1', _('UPnP IGDv1 compatibility mode'),
|
||||
_('Advertise as IGDv1 (IPv4 only) device instead of IGDv2'));
|
||||
o.default = '1';
|
||||
o.rmempty = false;
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('setup', form.Value, 'download', _('Download speed'),
|
||||
_('Report maximum download speed in kByte/s'));
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('setup', form.Value, 'upload', _('Upload speed'),
|
||||
_('Report maximum upload speed in kByte/s'));
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
s.taboption('advanced', form.Flag, 'use_stun', _('Use %s', 'Use %s (%s = STUN)')
|
||||
.format('<a href="https://en.wikipedia.org/wiki/STUN" target="_blank" rel="noreferrer"><abbr title="Session Traversal Utilities for NAT">STUN</abbr></a>'),
|
||||
_('To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs'));
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'stun_host', _('STUN host'));
|
||||
o.depends('use_stun', '1');
|
||||
o.datatype = 'host';
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'stun_port', _('STUN port'));
|
||||
o.depends('use_stun', '1');
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '3478';
|
||||
|
||||
s.taboption('advanced', form.Flag, 'ext_allow_private_ipv4', _('Allow private IPv4'),
|
||||
_('Allow port forwarding when the external interface has a private IPv4 address. Use this if your upstream supports full-cone NAT (please try STUN first)'))
|
||||
|
||||
o = s.taboption('advanced', form.Flag, 'secure_mode', _('Enable secure mode'),
|
||||
_('Allow adding port maps for requesting IP addresses only'));
|
||||
o.default = '1';
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'notify_interval', _('Notify interval'),
|
||||
_('A 900s interval will result in %s notifications with the minimum max-age of 1800s', 'A 900s interval will result in %s (%s = SSDP) notifications with the minimum max-age of 1800s')
|
||||
.format('<abbr title="Simple Service Discovery Protocol">SSDP</abbr>'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '900';
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'port', _('SOAP/HTTP port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '5000';
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'presentation_url', _('Presentation URL'),
|
||||
_('Report custom router web interface (presentation) URL'));
|
||||
o.placeholder = 'http://192.168.1.1/';
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'uuid', _('Device UUID'));
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'model_number', _('Announced model number'));
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'serial_number', _('Announced serial number'));
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
o = s.taboption('advanced', form.Flag, 'system_uptime', _('Report system instead of service uptime'));
|
||||
o.default = '1';
|
||||
o.depends('enable_upnp', '1');
|
||||
|
||||
s.taboption('advanced', form.Flag, 'log_output', _('Enable additional logging'),
|
||||
_('Puts extra debugging information into the system log'));
|
||||
|
||||
o = s.taboption('advanced', form.Value, 'upnp_lease_file', _('Service lease file'));
|
||||
o.placeholder = '/var/run/miniupnpd.leases';
|
||||
|
||||
s = m.section(form.GridSection, 'perm_rule', _('Service Access Control List'),
|
||||
_('ACL specify which client addresses and ports can be mapped, IPv6 always allowed.'));
|
||||
s.sortable = true;
|
||||
s.anonymous = true;
|
||||
s.addremove = true;
|
||||
|
||||
s.option(form.Value, 'comment', _('Comment'));
|
||||
|
||||
o = s.option(form.Value, 'int_addr', _('Client Address'));
|
||||
o.datatype = 'ip4addr';
|
||||
o.placeholder = '0.0.0.0/0';
|
||||
|
||||
o = s.option(form.Value, 'int_ports', _('Client Port'));
|
||||
o.datatype = 'portrange';
|
||||
o.placeholder = '1-65535';
|
||||
|
||||
o = s.option(form.Value, 'ext_ports', _('External Port'));
|
||||
o.datatype = 'portrange';
|
||||
o.placeholder = '1-65535';
|
||||
|
||||
o = s.option(form.ListValue, 'action', _('Action'));
|
||||
o.value('allow', _('Allow'));
|
||||
o.value('deny', _('Deny'));
|
||||
|
||||
return m.render().then(L.bind(function(m, nodes) {
|
||||
poll.add(L.bind(function() {
|
||||
return Promise.all([
|
||||
callUpnpGetStatus()
|
||||
]).then(L.bind(this.poll_status, this, nodes));
|
||||
}, this), 5);
|
||||
return nodes;
|
||||
}, this, m));
|
||||
}
|
||||
});
|
258
po/ar/upnp.po
Normal file
258
po/ar/upnp.po
Normal file
@ -0,0 +1,258 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2024-07-16 16:41+0000\n"
|
||||
"Last-Translator: Rex_sa <rex.sa@pm.me>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "إجراء"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "إعدادات متقدمة"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "تعليق"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "احدف"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "البروتوكول"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "المنفذ"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "الاعدادات العامة"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "مجهول"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
257
po/bg/upnp.po
Normal file
257
po/bg/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2024-02-28 14:29+0000\n"
|
||||
"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.5-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Действие"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Разширени настройки"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Коментар"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Изтрий"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Порт"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Общи настройки"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Неизвестно"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
257
po/bn_BD/upnp.po
Normal file
257
po/bn_BD/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2025-04-15 20:45+0000\n"
|
||||
"Last-Translator: Random Github User <shahariarrabby1@gmail.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationsupnp/bn_BD/>\n"
|
||||
"Language: bn_BD\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.11-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "উন্নত সেটিংস"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "বর্ণনা"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "এক্সটার্নাল পোর্ট"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "প্রোটোকল"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "পোর্ট"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "সাধারণ সেটিংস"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "অজানা"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
262
po/ca/upnp.po
Normal file
262
po/ca/upnp.po
Normal file
@ -0,0 +1,262 @@
|
||||
# upnp.pot
|
||||
# generated from ./applications/luci-upnp/luasrc/i18n/upnp.en.lua
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
|
||||
"PO-Revision-Date: 2021-09-17 06:52+0000\n"
|
||||
"Last-Translator: Roger Pueyo Centelles <weblate@rogerpueyo.com>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.9-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Els ACL especifiquen quins ports externs es poden redirigir a quines adreces "
|
||||
"i ports interns, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Acció"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Redireccions actives"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Configuració avançada"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Permet que s'afegeixin redireccions només a les adreces IP peticionant"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Número de model anunciat"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Número de sèrie anunciat"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Adreça de client"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port de client"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Commentari"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Suprimeix"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID de dispositiu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Enllaç de baixada"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Habilita el registre addicional"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Habilita mode segur"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Port extern"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Interval de notificació"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Posa informació extra de depuració en el registre de sistema"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Reporta el temps actiu del sistema en lloc del del dimoni"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Paràmetres generals"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permet als clients de la xarxa local configurar automàticament el router."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "No hi ha redireccions actives."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & PCP/NAT-PMP Service"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Desconegut"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Enllaç de pujada"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
260
po/cs/upnp.po
Normal file
260
po/cs/upnp.po
Normal file
@ -0,0 +1,260 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2025-05-12 14:57+0000\n"
|
||||
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Interval 900s bude mít za následek %s upozornění s minimální max-age 1800s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL stanovují, které vnější porty by měly být přesměrovány na které vnitřní "
|
||||
"adresy a porty, IPv6 je povoleno vždy."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Akce"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktivní mapy portů služeb"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Aktivní UPnP IGD a PCP/NAT-PMP mapy portů"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Pokročilá nastavení"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Inzerovat jako IGDv1 zařízení místo IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Umožnit"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Povolit přesměrování pouze na dotazující IP adresy"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Oznámené číslo modelu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Oznámené sériové číslo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Adresa klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Název klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Komentář"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Odepřít"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID zařízení"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Rychlost příjmu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Zapnout protokoly PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Zapnout protokol UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Zapnout rozšířené zaznamenávání událostí"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Zapnout zabezpečený režim"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Platnost skončí"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Vnější port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Udělit přístup k UPnP IGD a PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Interval oznamování"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Prezentační URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Vypisovat extra ladící informace do systémového záznamu událostí"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr "Hlásit URL uživatelsky určené webové rozhraní směrovače (prezentace)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Hlásit nejvyšší umožněnou rychlost stahování (v kB/s)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Hlásit nejvyšší umožněnou rychlost odesílání (v kB/s)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Hlásit dobu chodu systému namísto doby chodu služby"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN Hostitel"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Seznam řízení přístupu ke službě"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Nastavení služby"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Nastavení služby"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Soubor se zápůjčkami služby"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Spustit službu autonomního mapování portů"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Spustit službu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr "%s umožňuje klientům v místní síti automaticky nastavovat směrovač."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Neexistují žádná aktivní přesměrování."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Pro zjištění veřejné IPv4 adresy pro neomezené NAT překlady full-cone/one-to-"
|
||||
"one"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "Služba UPnP IGD a PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Povolit režim UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Neznámý"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Rychlost odesílání"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Použít %s"
|
261
po/da/upnp.po
Normal file
261
po/da/upnp.po
Normal file
@ -0,0 +1,261 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2021-11-13 08:12+0000\n"
|
||||
"Last-Translator: drax red <drax@outlook.dk>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.9.1-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL'er angiver, hvilke eksterne porte der kan omdirigeres til hvilke interne "
|
||||
"adresser og porte, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Handling"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktive omdirigeringer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Avancerede indstillinger"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Annoncerer som IGDv1-enhed i stedet for IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Tillad kun at tilføje viderestillinger til IP-adresser, der anmoder om"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Annonceret modelnummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Annonceret serienummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Klient adresse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Klient port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Slet"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Enhedens UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Download speed"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Aktiver yderligere logning"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Aktiver sikker tilstand"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Ekstern port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Underretningsinterval"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL til præsentation"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Sætter ekstra fejlfindingsoplysninger i systemloggen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Rapportere system i stedet for dæmonens oppetid"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN vært"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Generelle indstillinger"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s gør det muligt for klienter i det lokale netværk at konfigurere routeren "
|
||||
"automatisk."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Der er ingen aktive omdirigeringer."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Aktiver UPnP IGDv1-tilstand"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Ukendt"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Upload speed"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Brug %s"
|
263
po/de/upnp.po
Normal file
263
po/de/upnp.po
Normal file
@ -0,0 +1,263 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-26 17:57+0200\n"
|
||||
"PO-Revision-Date: 2025-05-07 12:02+0000\n"
|
||||
"Last-Translator: snk0911 <sewerin.kuss@outlook.com>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Ein Intervall von 900 Sekunden führt zu SSDP-Benachrichtigungen mit dem "
|
||||
"minimalen Maximalalter von 1800 Sekunden"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL definieren, welche externen Ports zu welchen internen Adressen und Ports "
|
||||
"weitergeleitet werden dürfen, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Aktion"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktive Weiterleitungen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Erweiterte Einstellungen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Als IGDv1-Gerät anstelle von IGDv2 bekanntgeben"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Erlauben"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Nur Weiterleitungen zurück zum anfordernden Client zulassen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Angekündigte Modellnummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Angekündigte Seriennummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Clientadresse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Clientport"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Ablehnen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Geräte-UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Download-Bandbreite"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Protokolle PCP/NAT-PMP aktivieren"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "UPnP IGD-Protokoll aktivieren"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Erweiterte Protokollierung aktivieren"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Sicheren Modus aktivieren"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Läuft ab"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Externer Port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Benachrichtigungsintervall"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Präsentations-URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Schreibt zusätzliche Debug-Informationen in das Systemprotokoll"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Systemlaufzeit statt Prozesslaufzeit melden"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN-Host"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN-Port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Diensteinstellungen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Allgemeine Einstellungen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Autonomen Portzuordnungsdienst starten"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Dienst starten"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s erlaubt es Clients im lokalen Netzwerk automatisch Port-Weiterleitungen "
|
||||
"auf diesem Router einzurichten."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Es gibt keine aktiven Weiterleitungen."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & PCP/NAT-PMP Service"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1 Modus aktivieren"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Unbekannt"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Upload speed"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "%s verwenden"
|
257
po/el/upnp.po
Normal file
257
po/el/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-28 02:08+0200\n"
|
||||
"PO-Revision-Date: 2024-11-09 08:59+0000\n"
|
||||
"Last-Translator: Mac Mac <nofxmac@gmail.com>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.8.2\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Δράση"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Ρυθμίσεις για προχωρημένους"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Σχόλιο"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Πρωτόκολλο"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Θύρα"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Γενικές ρυθμίσεις"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Ταχύτητα μεταφόρτωσης"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
268
po/es/upnp.po
Normal file
268
po/es/upnp.po
Normal file
@ -0,0 +1,268 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
|
||||
"PO-Revision-Date: 2024-12-25 01:46+0000\n"
|
||||
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Un intervalo de 900 s dará lugar a %s notificaciones con una edad máxima "
|
||||
"mínima de 1800 s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Las Listas de Control de Acceso (ACL) especifican cuáles puertos externos "
|
||||
"pueden ser reenviados hacía las direcciones IP y puertos del cliente. Las "
|
||||
"direcciones IPv6 siempre son permitidas."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Acción"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Reenvíos de puertos activos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Mapas de puertos UPnP IGD y PCP/NAT-PMP activos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Ajustes avanzados"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Anunciar como dispositivo UPnP IGDv1 (sin IPv6) en lugar de IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Permitir"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Permitir agregar reenvíos de puertos solo a direcciones IP solicitantes"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Número de modelo anunciado"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Número de serie anunciado"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Dirección del cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Nombre del cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Puerto del cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Comentario"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Denegar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID del dispositivo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Velocidad de descarga"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Activar protocolos PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Activar protocolo UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Activar registro adicional"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Activar modo seguro"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Expira"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Puerto externo"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Conceder acceso a UPnP IGD y PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Intervalo de notificación"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL de presentación"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Coloca información de depuración adicional en el registro del sistema"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
"URL de la interfaz web (presentación) del enrutador personalizado del informe"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Informar de la velocidad máxima de descarga en kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Informar de la velocidad máxima de subida en kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Informar tiempo de actividad del sistema en vez de la del servicio"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Puerto"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Host STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Puerto STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Lista de control de acceso al servicio"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Ajustes del Servicio"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Ajustes generales"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Archivo de tiempo de concesión del servicio"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Iniciar el servicio de asignación de puertos autónomos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Iniciar servicio"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permiten a los clientes de la red local configurar automáticamente el "
|
||||
"reenvío de puertos en el enrutador."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "No hay reenvíos de puertos vigentes."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Detecte direcciones IPv4 públicas para usar con NAT de cono completo/uno a "
|
||||
"uno sin restricciones"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD y PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "Servicio UPnP IGD y PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Activar UPnP modo IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Desconocido"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Velocidad de carga"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Utilizar %s"
|
261
po/fi/upnp.po
Normal file
261
po/fi/upnp.po
Normal file
@ -0,0 +1,261 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2025-05-04 15:03+0000\n"
|
||||
"Last-Translator: Ricky Tigg <ricky.tigg@gmail.com>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"900 sekunnin väli johtaa %s ilmoitukseen, joiden vähimmäisikä on 1800 "
|
||||
"sekuntia"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL-pääsylista määrittää, mitkä asiakasosoitteet ja portit voidaan yhdistää "
|
||||
"– IPv6 aina sallittu."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Toiminta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktiivise uudelleenohjaukset"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Lisäasetukset"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Mainosta IGDv1-laitteena (vain IPv4) IGDv2:n sijaan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Salli"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Ilmoitettu mallinumero"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Ilmoitettu sarjanumero"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Asiakasosoite"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Asiakasnimi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Asiakasportti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Kommentti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Kiellä"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Laitteen UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Ota PCP-/NAT-PMP-protokollat käyttöön"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Ota UPnP IGD -protokolla käyttöön"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Ota ylimääräinen lokikirjaaminen käyttöön"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Ota turvallinen tila käyttöön"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Umpeutuu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Ulkoinen portti"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Myönnä pääsy UPnP IGD:hen ja PCP/NAT-PMP:hen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Ilmoitusväli"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Esityksen URL-osoite"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokolla"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Laita ylimääräisiä viankorjaustietoja järjestelmälokiin"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr "Ilmoita mukautetun reitittimen verkkoliitännän (esitys) URL-osoite"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Ilmoita enimmäislatausnopeus kilotavuina sekunnissa; kt/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Ilmoita enimmäisuloslatausnopeus kilotavuina sekunnissa; kt/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Ilmoita järjestelmän käyttöaika palvelun käyttöajan sijaan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Portti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN-isäntä"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN-portti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Palveluasetukset"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Yleiset asetukset"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Ei aktiivisia uudelleenohjauksia."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Käytä UPnP IGDv1-tilaa"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Tuntematon"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Lähetysyhteys"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Käytä %s:ia"
|
267
po/fr/upnp.po
Normal file
267
po/fr/upnp.po
Normal file
@ -0,0 +1,267 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2025-01-20 23:30+0000\n"
|
||||
"Last-Translator: Didier Martin <dm.martin@free.fr>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Un intervalle de 900s indique qu'il y aura %s notifications avec une valeur "
|
||||
"max-age ayant pour minimum 1800s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Les ACL définissent quels ports externes peuvent être redirigés, vers "
|
||||
"quelles adresses et ports internes, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Action"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Redirections actives"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
#, fuzzy
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Réglages avancés"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Annoncer comme dispositif IGDv1 au lieu de IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Permet d'ajouter des redirections seulement vers les adresses IP qui font "
|
||||
"des demandes"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Numéro de modèle annoncé"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Numéro de série annoncé"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Adresse du client"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port du client"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Commentaire"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Effacer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID du périphérique"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Liaison descendante"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Activer la journalisation additionnelle"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Activer le mode sécurisé"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Port externe"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Intervalle de notification"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL de présentation"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocole"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Rajoute des informations de debug dans le journal-système"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
"Indiquer la durée de fonctionnement du système plutôt que celle du démon UPnP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Hôte STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Port STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Réglages généraux"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permet à des clients du réseau local de configurer automatiquement le "
|
||||
"routeur."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Il n'y a pas de redirections actives."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Activer le mode UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Inconnue"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Liaison montante"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Utiliser %s"
|
266
po/ga/upnp.po
Normal file
266
po/ga/upnp.po
Normal file
@ -0,0 +1,266 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2025-05-05 18:17+0000\n"
|
||||
"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
|
||||
"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ga/>\n"
|
||||
"Language: ga\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :"
|
||||
"(n>6 && n<11) ? 3 : 4;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Mar thoradh ar eatramh 900s beidh %s fógraí leis an aois uasta íosta de 1800í"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Sonraíonn ACLanna cé na calafoirt sheachtracha is féidir a chur ar aghaidh "
|
||||
"chuig a seoltaí cliant agus calafoirt, IPv6 ceadaithe i gcónaí."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Gníomhaíocht"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Port Gníomhach ar Aghaidh"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Léarscáileanna Gníomhacha UPnP IGD & PCP/NAT-PMP Port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Socruithe chun cinn"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Fógairt mar ghléas UPnP IGDv1 (gan IPv6) in ionad IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Ceadaigh"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Ceadaigh port a chur ar aghaidh chuig seoltaí IP amháin a iarrtar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Uimhir mhúnla fógartha"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Sraithuimhir fógartha"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Seoladh Cliant"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Ainm an Chliaint"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port Cliant"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Trácht"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Scrios"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Shéanadh"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Cur síos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID Gléas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Gá le luas a íoslódáil"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Cumasaigh prótacal PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Cumasaigh prótacal UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Cumasaigh logáil bhreise"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Cumasaigh mód slán"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "In éag"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Port Seachtrach"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Deonaigh rochtain ar UPnP IGD & PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Eatramh fógra"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL cur i láthair"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Prótacal"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Cuireann sé faisnéis bhreise dífhabhtaithe isteach i loga an chórais"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
"Tuairiscigh URL comhéadan gréasáin ródaire saincheaptha (cur i láthair)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Tuairiscigh an t-uasluas íoslódála i kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Tuairiscigh an t-uasluas uaslódála i kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Córas tuairisce in ionad aga fónaimh seirbhíse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Port SOAP/HTTP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN Óstach"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Liosta Rialaithe Rochtana Seirbhíse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Socruithe Seirbhíse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Socruithe Ginearálta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Comhad léasa seirbhíse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Cuir tús le seirbhís mapála calafoirt uathrialach"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Tosaigh seirbhís"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"Ligeann %s do chliaint ar an líonra áitiúil chun port ar aghaidh ar an "
|
||||
"ródaire a chumrú go huathoibríoch. Tugtar Breiseán Uilíoch agus Súgradh air "
|
||||
"freisin."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Níl aon phort gníomhach ar aghaidh."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Chun an seoladh IPv4 poiblí a bhrath do NAT lánchón/duine le duine gan srian"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & Seirbhís PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Cumasaigh mód UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Anaithnid"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Luas uaslódála"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Bain úsáid as %s"
|
255
po/he/upnp.po
Normal file
255
po/he/upnp.po
Normal file
@ -0,0 +1,255 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-09-07 02:50+0000\n"
|
||||
"Last-Translator: Oren Bahar <shavitbit@gmail.com>\n"
|
||||
"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.0.1-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "פעולה"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "הגדרות מתקדמות"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "תגובה"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "תיאור"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "פתחה"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
257
po/hi/upnp.po
Normal file
257
po/hi/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2024-07-06 11:32+0000\n"
|
||||
"Last-Translator: Sathvic <sathvic.p@gmail.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/hi/>\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "उन्नत सेटिंग्स"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "अज्ञात"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
261
po/hu/upnp.po
Normal file
261
po/hu/upnp.po
Normal file
@ -0,0 +1,261 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2025-05-08 13:01+0000\n"
|
||||
"Last-Translator: hmzs <hmzs@1szer1.hu>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Az ACL-ek határozzák meg, hogy melyik külső portok melyik belső portokra és "
|
||||
"címekre kerülhetnek továbbításra, IPv6 mindig engedélyezett."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Művelet"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktív átirányítások"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Haladó beállítások"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Hirdetés IGDv1 eszközként IGDv2 helyett"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Kizárólag a kérést küldő IP címre történő továbbítás hozzáadásának "
|
||||
"engedélyezése"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Bejelentett modellszám"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Bejelentett sorozatszám"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Megjegyzés"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Törlés"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Eszköz UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Befelé jövő kapcsolat"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "PCP/NAT-PMP protokoll engedélyezése"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "UPnP IGD protokoll engedélyezése"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "További naplózás engedélyezése"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Biztonságos mód engedélyezése"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Külső port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Értesítési időköz"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Bemutató URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "További hibakeresési információkat tesz a rendszernaplóba"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "A démon helyett a rendszer működési idejét jeleníti meg"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Általános beállítások"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"A %s protokollok lehetővé teszik a helyi hálózaton lévő kliensek számára, "
|
||||
"hogy önállóan konfigurálják a portkiosztásokat/továbbításokat a routeren."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Nincsenek aktív átírányítások."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1 mód engedélyezése"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Ismeretlen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Kimenő sebesség"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
261
po/it/upnp.po
Normal file
261
po/it/upnp.po
Normal file
@ -0,0 +1,261 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2024-08-02 19:09+0000\n"
|
||||
"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Le ACL specificano quali porte esterne possono essere ridirezionate a quali "
|
||||
"indirizzi e porte interni, IPv6 sempre consentito."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Azione"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Attiva reindirizzamento"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Impostazioni avanzate"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Pubblicizza come dispositivo IGDv1 anziché IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Permetti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Permetti l'aggiunta della mappatura solo agli indirizzi IP richiedenti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Numero modello annunciato"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Numero seriale annunciato"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Indirizzo IP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Commento"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Nega"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID del dispositivo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Velocità di download"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Abilita il protocollo UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Abilita log addizionale"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Abilita la modalità sicura"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Porta Esterna"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Intervallo di notifica"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL di presentazione"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocollo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Scrivi nel log di sistema ulteriori informazioni di debug"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Mostra l'uptime del sistema invece del servizio"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Host STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Porta STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Servizi ACL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Impostazioni Generali"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permette ai dispositivi nella rete locale di configurare automaticamente "
|
||||
"l'apertura delle porte del router."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Non ci sono mappature attive."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD e PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Abilita modalità UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Sconosciuto"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Velocità di upload"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Usa %s"
|
261
po/ja/upnp.po
Normal file
261
po/ja/upnp.po
Normal file
@ -0,0 +1,261 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2024-03-28 23:40+0000\n"
|
||||
"Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.5-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"アクセス制御リスト(ACL)は、どの外部ポートからどの内部アドレス及びポートへリ"
|
||||
"ダイレクトするかを設定します。, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "アクション"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "稼働中のリダイレクト"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "詳細設定"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "IGDv2 ではなく IGDv1 デバイスとしてアドバタイズ"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "許可"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "要求元IPアドレスへの転送のみ、追加を許可します"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "通知するモデル番号"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "通知するシリアル番号"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "クライアント・アドレス"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "クライアント・ポート"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "コメント"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "削除"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "拒否"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "デバイス UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "ダウンリンク"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "UPnP IGD機能を有効にする"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "ログ機能を有効にする"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "セキュアモードを有効にする"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "外部ポート"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "通知間隔"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "プレゼンテーションURL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "プロトコル"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "追加のデバッグ情報をシステムログへ挿入する"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "サービスの起動時間の代わりにシステムの起動時間を使用する"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "ポート"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN ホスト"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN ポート"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "一般設定"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%sを使用することで、ローカルネットワーク内のクライアントが自動的にルータを構"
|
||||
"成することができます。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "有効なリダイレクトはありません。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGDとPCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1 モードを有効化"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "不明"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "アップリンク"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "%s を使用"
|
257
po/ko/upnp.po
Normal file
257
po/ko/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2025-05-06 11:54+0000\n"
|
||||
"Last-Translator: Beomjun <kals323@gmail.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "액션"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "고급 설정"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "메모"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "설명"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "다운로드 속도"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "프로토콜"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "포트"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "기본 설정"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "업로드 속도"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
268
po/lt/upnp.po
Normal file
268
po/lt/upnp.po
Normal file
@ -0,0 +1,268 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2025-01-04 15:01+0000\n"
|
||||
"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n"
|
||||
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"900 sek. intervalas lems %s pranešimų, kurių mažiausias maksimalus amžius "
|
||||
"yra – 1800 sek."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"„ACL“ (dgs.) nurodo, į kuriuos išorinius prievadus galima persiųsti į "
|
||||
"nurodytus kliento adresus ir prievadus, IPv6 yra visada leidžiamas."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Veiksmas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktyvūs prievadų persiuntimai"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Aktyvūs „UPnP IGD„ ir „PCP/NAT-PMP“ prievadų žemėlapiai"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Pažangūs nustatymai"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Reklamuoti/Skelbti kaip – „IGDv1“ įrenginį (be IPv6), vietoj „IGDv2“"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Leisti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Leisti pridėti prievadų persiuntimus tik į užklausų reikalaujančius IP "
|
||||
"adresus"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Paskelbtas modelio numeris"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Paskelbtas serijos numeris"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Kliento adresas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Kliento pavadinimas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Kliento prievadas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Komentuoti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Ištrinti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Atmesti/Neprileisti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Aprašas/-ymas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Įrenginio „UUID“"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Atsisiuntimo greitis"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Įjungti/Įgalinti „PCP/NAT-PMP“ protokolus"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Įjungti/Įgalinti „UPnP IGD“ protokolą"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Įjungti papildomą žurnalinimą"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Įjungti „saugiąją veikseną“"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Baigia galioti"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Išorinis prievadas"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Duoti prieigą prie „UPnP IGD“ ir „PCP/NAT-PMP“"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Pranešimo intervalas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Pateikties „URL“ – saitas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokolas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Įdeda papildomą derinimo informaciją į sistemos žurnalą"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
"Pranešti apie pasirinktinio maršrutizatoriaus žiniatinklio sąsajos ir/arba "
|
||||
"sietuvo (pristatymo) „URL“ – saitą"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Pranešti apie maksimalų atsisiuntimo greitį kb/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Pranešti apie maksimalų įkėlimo greitį kb/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Pranešti apie sistemos veikimo laiką, o ne tarnybos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Prievadas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "„STUN“ skleidėjas/vedėjas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "„STUN“ prievadas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Tarnybos prieigos kontrolės sąrašas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Tarnybos nustatymai"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Bendri nustatymai"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Tarnybos nuomos failas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Paleisti savavaldiško prievado atvaizdavimo tarnybą"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Paleisti tarnybą"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"„%s“ protokolai leidžia vietinio tinklo klientams savavaldiškai konfigūruoti "
|
||||
"prievado priskyrimus/persiuntimus maršrutizatoriuje."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Nėra aktyvių prievadų persiuntimų."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Viešojo IPv4 adreso aptikimas neapribotiems pilno kūginio/vieniems su vienu "
|
||||
"„NAT“ tinklams"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "„UPnP“ – „IGD“ ir „PCP“"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "„UPnP“ – „IGD“ ir „PCP“ tarnyba"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Įjungti „UPnP IGDv1“ veikseną"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Nežinoma/-s/-i"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Įkėlimo greitis"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Naudoti „%s“"
|
257
po/mr/upnp.po
Normal file
257
po/mr/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2020-02-07 09:18+0000\n"
|
||||
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
|
||||
"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/mr/>\n"
|
||||
"Language: mr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.11-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "प्रगत सेटिंग्ज"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "टिप्पणी"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "हटवा"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "वर्णन"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "प्रोटोकॉल"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "पोर्ट"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "सामान्य सेटिंग्ज"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "अज्ञात"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "अपलिंक"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
255
po/ms/upnp.po
Normal file
255
po/ms/upnp.po
Normal file
@ -0,0 +1,255 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-01-22 09:21+0000\n"
|
||||
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
|
||||
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ms/>\n"
|
||||
"Language: ms\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Tindakan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Tetapan Lanjutan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Ulasan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Keterangan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
257
po/nb_NO/upnp.po
Normal file
257
po/nb_NO/upnp.po
Normal file
@ -0,0 +1,257 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2025-03-14 08:43+0000\n"
|
||||
"Last-Translator: Lasse Skogland <lasse.skogland@gmail.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/nb_NO/>\n"
|
||||
"Language: nb_NO\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.11-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL angir hvilke eksterne porter som kan bli viderekoblet, og til hvilke "
|
||||
"interne adresser og porter, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Handling"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktive Viderekoblinger"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Avanserte innstillinger"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Annonser som IGDv1-enhet istedenfor IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Tillat videkobling kun til IP adresser som ber om det"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Annonsert modellnummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Annonsert serienummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Klient adresse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Klient port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Enhet UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Nedlastningshastighet"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Aktiver tilleggs logging"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Aktiver sikker modus"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Ekstern port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Informasjons intervall"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Presentasjon URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Setter ekstra debugging informasjon i systemloggen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Rapporter systemets oppetid istedenfor daemon oppetid"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN-vert"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN-port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Generelle innstillinger"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s gjør at klientene i det lokale nettverket automatisk kan konfigurere "
|
||||
"ruteren."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Det finnes ingen aktive viderekoblinger"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & PCP/NAT-PMP Service"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Skru på UPnP IGDv1-modus"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Ukjent"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Opplastningshastighet"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Bruk %s"
|
255
po/nl/upnp.po
Normal file
255
po/nl/upnp.po
Normal file
@ -0,0 +1,255 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2025-01-20 10:53+0000\n"
|
||||
"Last-Translator: Meow <sander.schutten@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Actie"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Geavanceerde instellingen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Toestaan"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
265
po/pl/upnp.po
Normal file
265
po/pl/upnp.po
Normal file
@ -0,0 +1,265 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-12-25 01:46+0000\n"
|
||||
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Interwał 900s doprowadzi do powiadomień %s z minimalnym czasem życia 1800s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Lista kontroli dostępu określa, które adresy i porty klientów mogą być "
|
||||
"przekierowane. Protokół IPv6 jest zawsze dozwolony."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Akcja"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktywne przekierowania portów"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Aktywne przekierowania portów UPnP IGD i PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Ustawienia zaawansowane"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Rozgłaszaj jako urządzenie IGDv1 (bez IPv6) zamiast IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Zezwól"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Zezwól na dodawanie przekierowań tylko do odpytujących adresów IP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Rozgłaszany numer modelu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Rozgłaszany numer seryjny"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Adres klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Nazwa klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Komentarz"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Usuń"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Odmów"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID urządzenia"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Prędkość pobierania"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Włącz protokół PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Włącz protokół UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Włącz dodatkowe rejestrowanie"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Włącz tryb bezpieczny"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Wygasa"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Port zewnętrzny"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Udziel dostępu do UPnP IGD i PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Interwał powiadamiania"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Adres URL prezentacji"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokół"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
"Umieszcza dodatkowe informacje dotyczące debugowania w dzienniku systemowym"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
"Zgłaszaj niestandardowy adres URL interfejsu sieciowego (prezentacji) routera"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Zgłaszaj maksymalną prędkość pobierania w kB/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Zgłaszaj maksymalną prędkość wysyłania w kB/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Zgłaszaj czas pracy systemu zamiast czasu pracy usługi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Port SOAP/HTTP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Host STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Port STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Lista kontroli dostępu usługi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Ustawienia usługi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Konfiguracja usługi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Plik dzierżawy usługi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Uruchom autonomiczną usługę przekierowania portów"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Uruchom usługę"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"Protokoły %s umożliwiają klientom w sieci lokalnej autonomiczne "
|
||||
"konfigurowanie przekierowania/przekazywania portów na routerze."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Nie ma aktywnych przekierowań portów."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Aby wykryć publiczny adres IPv4 dla nieograniczonych NAT-ów full-cone/one-to-"
|
||||
"one"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD i PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "Usługa UPnP IGD i PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Włącz tryb UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Nieznany"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Prędkość wysyłania"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Użyj %s"
|
263
po/pt/upnp.po
Normal file
263
po/pt/upnp.po
Normal file
@ -0,0 +1,263 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-26 19:03+0200\n"
|
||||
"PO-Revision-Date: 2025-05-19 01:47+0000\n"
|
||||
"Last-Translator: Rodrigo Augusto de Godoy <godoywave@gmail.com>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Um intervalo de 900s resultará em %s notificações com o max-age mínimo de "
|
||||
"1800s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Os ACL especificam quais as portas externas que podem ser redirecionadas "
|
||||
"para que endereços internos e portas, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Ação"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Redirecionamentos ativos da"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Configurações avançadas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Anuncie como aparelho IGDv1 em vez de IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Permitir"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Permitir a adição de encaminhamentos apenas para solicitar endereços IP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Número modelo anunciado"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Número de série anunciado"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Endereço do Cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Porta do Cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Comentário"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Apagar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Negar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID do aparelho"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Download speed"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Ativar log adicional"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Ativar o modo seguro"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Porta externa"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Intervalo de Notificação"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL de apresentação"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Põe informações de depuração extras no log do sistema"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Relata uptime do sistema ao invés da do daemon"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Host STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Porta STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Configurações gerais"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permite que os clientes da rede local configurem o router automaticamente."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Não há redirecionamentos ativos."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Ativar o modo UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Desconhecido"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Ligação ascendente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Utilizar %s"
|
265
po/pt_BR/upnp.po
Normal file
265
po/pt_BR/upnp.po
Normal file
@ -0,0 +1,265 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
|
||||
"PO-Revision-Date: 2024-12-17 09:39+0000\n"
|
||||
"Last-Translator: Janderson Vieira Santos <jandersonvs79@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationsupnp/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.9\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Um intervalo de 900s resultará em %s notificações com o max-age mínimo de "
|
||||
"1800s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"As ACL especificam quais portas externas podem ser encaminhadas para quais "
|
||||
"endereços e portas de clientes, com IPv6 sempre será permitido."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Ação"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Redirecionamentos Ativos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Mapeamentos de portas UPnP IGD e PCP/NAT-PMP ativos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Configurações avançadas"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Anuncie-se como um dispositivo IGDv1 ao invés de um IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Permitir"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Permite adicionar encaminhamento apenas para o endereço IP requisitante"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Número do modelo anunciado"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Número de série anunciado"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Endereço do cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Nome do cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Porta do Cliente"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Comentário"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Apagar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Negar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID do Dispositivo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Velocidade de download"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Habilitar protocolos PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Habilitar protocolo UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Habilite registros adicionais"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Habilite modo seguro"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Porta externa"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Conceder acesso ao UPnP IGD e PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Intervalo de notificação"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL de Apresentação"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Envie informações extra de depuração ao registro do sistema"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr "Relatar URL personalizada da interface web do roteador (apresentação)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Relatar a velocidade máxima de download em kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Relatar a velocidade máxima de upload em kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Informe o tempo de vida do sistema ao invés do tempo do processo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Host STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Porta STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Lista de Controle de Acesso ao Serviço"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Configurações do Serviço"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Configurações gerais"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Arquivo de concessão do serviço"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Iniciar serviço de mapeamento de portas autônomo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Iniciar serviço"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permite os clientes da rede local configurem automaticamente o roteador."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Não existe redirecionamentos ativos."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Detectar o endereço IPv4 público para NATs de cone completo/um-para-um sem "
|
||||
"restrições"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "Serviço UPnP IGD e PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Habilitar o modo UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Desconhecido"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Velocidade de envio (upload)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Use o %s"
|
259
po/ro/upnp.po
Normal file
259
po/ro/upnp.po
Normal file
@ -0,0 +1,259 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-01-25 22:56+0000\n"
|
||||
"Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\n"
|
||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.11-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL-urile specifica porturile externe care pot fi redirectate si spre ce "
|
||||
"adrese si porturi interne, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Acțiune"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Redirecturi active"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Setări avansate"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Publicitate ca dispozitiv IGDv1 în loc de IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Permite adaugarea forward-urilor doar catre adresele IP solicitante"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Numărul modelului anunțat"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Număr de serie anunțat"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Adresa client"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port client"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Comentariu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Ștergeți"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Descriere"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID al dispozitivului"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Link în jos"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Activeaza log-area aditionala"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Activeaza modul securizat"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Port extern"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Interval de notificare"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Adresa de prezentare"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Pune informatii utile suplimentare in log-ul de sistem"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Raporteaza timpul de functionare de sistem in loc de serviciu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Gazda STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Portul STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Setări generale"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s permite clientulor din reteaua locala sa configureze automat routerul."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Nu exista redirecturi active."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Activează modul UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Necunoscut"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Legătură ascendentă"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Utilizați %s"
|
268
po/ru/upnp.po
Normal file
268
po/ru/upnp.po
Normal file
@ -0,0 +1,268 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: LuCI: upnp\n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2025-05-19 21:02+0000\n"
|
||||
"Last-Translator: SnIPeRSnIPeR <feoktistovk@gmail.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
||||
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Интервал 900 сек. приведет к появлению %s уведомлений с минимальным "
|
||||
"максимальным возрастом 1800 сек"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Список контроля доступа (ACL) определяет, какие клиентские адресы могут быть "
|
||||
"перенаправлены, IPv6 всегда разрешён."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Действие"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Активные переадресации"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Активные карты портов UPnP IGD и PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Расширенные настройки"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Объявить как IGDv1 устройство вместо IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Разрешить"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Разрешить перенаправление только для запрашивающих IP-адресов"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Объявить номер модели"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Объявить серийный номер"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Адрес клиента"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Имя клиента"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Порт клиента"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Комментарий"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Отказать"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID устройства"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Скорость закачки"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Включить протоколы PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Включить UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Дополнительное журналирование"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Защищённый режим"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Истекает"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Внешний порт"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Предоставить доступ к UPnP IGD и PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Интервал уведомления"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Задать URL-адрес"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Добавлять дополнительную отладочную информацию в системный журнал"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
"URL-адрес веб-интерфейса (презентации) пользовательского маршрутизатора"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Сообщать максимальную скорость загрузки в кБайт/с"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Сообщать максимальную скорость загрузки в кБайт/с"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Сообщать время работы системы вместо службы"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Порт SOAP/HTTP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Хост STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Порт STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Список контроля доступа к сервисам"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Настройки сервиса"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Основные настройки"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Файл аренды сервиса"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Запуск службы сопоставления автономных портов"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Запустить сервис"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"Протоколы %s позволяют клиентам в локальной сети автоматически настраивать "
|
||||
"маршрутизатор."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Активные переадресации отсутствуют."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Чтобы определить публичный IPv4-адрес для неограниченных NAT с полным "
|
||||
"конусом/одним к одному"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD и PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "Сервис UPnP IGD и PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1 режим"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Неизвестный"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Внешнее соединение"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Использовать %s"
|
255
po/sk/upnp.po
Normal file
255
po/sk/upnp.po
Normal file
@ -0,0 +1,255 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-04-04 17:34+0000\n"
|
||||
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
|
||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/sk/>\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.0-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Akcia"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktívne presmerovania"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Pokročilé nastavenia"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Umožniť pridanie preposielaní iba požadovaným adresám IP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Ohlásené číslo modelu"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Ohlásené sériové číslo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Adresa klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Port klienta"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Komentár"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Odstrániť"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID zariadenia"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Povoliť dodatočné zaznamenávanie"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Povoliť zabezpečený režim"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Externý port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Interval upozornení"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Prezentačná URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Všeobecné nastavenia"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr "%s umožňuje klientom v miestnej sieti automaticky nastaviť smerovač."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Neexistujú žiadne aktívne presmerovania."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Povoliť režim UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Neznáme"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
261
po/sv/upnp.po
Normal file
261
po/sv/upnp.po
Normal file
@ -0,0 +1,261 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2025-03-03 22:06+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.10.3-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Ett 900s intervall kommer att resultera i %s notifieringar med minimum "
|
||||
"maxålder på 1800s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL:er anger vilka externa portar som ska omdirigeras till vilka interna "
|
||||
"adresser och portar, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Åtgärd"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktivera omdirigeringar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Avancerade inställningar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Annonsera som IGDv1-enhet (ingen IPv6) istället för IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Tillåt"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Aviserat modellnummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Aviserat serienummer"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Klient-adress"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Klient-port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Ta bort"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Neka"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Enhetens UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Hämtningshastighet"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Aktivera ytterligare loggning"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Aktivera säkert läge"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Extern port"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Tillåt åtkomst till UPnP IGD & PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Intervall för avisering"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Presentationens URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Lägger extra felsökningsinformation till system-loggen"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Rapportera systemet iställer för demonens upptid"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN-värd"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN-port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Generella inställningar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s tillåter klienter i det lokala nätverket att automatiskt ställa in "
|
||||
"routern."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Det finns inga aktiva omdirigeringar."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Aktivera UPnP IGDv1-läge"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Okänd"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Upplänk"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Använd %s"
|
259
po/ta/upnp.po
Normal file
259
po/ta/upnp.po
Normal file
@ -0,0 +1,259 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2025-01-26 13:53+0000\n"
|
||||
"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\n"
|
||||
"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/ta/>\n"
|
||||
"Language: ta\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"900 களின் இடைவெளி 1800 களின் குறைந்தபட்ச அதிகபட்ச வயதுடன் %s அறிவிப்புகளை ஏற்படுத்தும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"எந்த கிளையன்ட் முகவரிகள் மற்றும் துறைமுகங்களை வரைபடமாக்க முடியும் என்பதைக் குறிப்பிடவும், "
|
||||
"ஐபிவி 6 எப்போதும் அனுமதிக்கப்படுகிறது."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "செயல்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "செயலில் பணி துறைமுகம் வரைபடங்கள்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "ஆக்டிவ் யுபிஎன்பி ஐ.சி.டி & பிசிபி/நாட்-பிஎம்பி துறைமுகம் வரைபடங்கள்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "மேம்பட்ட அமைப்புகள்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "IGDV2 க்கு பதிலாக IGDV1 (IPV4 மட்டும்) சாதனமாக விளம்பரம் செய்யுங்கள்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "இசைவு"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "ஐபி முகவரிகளைக் கோருவதற்கு துறைமுகம் வரைபடங்களைச் சேர்க்க அனுமதிக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "மாதிரி எண் அறிவிக்கப்பட்டது"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "அறிவிக்கப்பட்ட வரிசை எண்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "வாடிக்கையாளர் முகவரி"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "கிளையன்ட் பெயர்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "வாங்கி துறைமுகம்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "கருத்து"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "நீக்கு"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "மறுக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "விவரம்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "சாதனம் uuid"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "பதிவிறக்க விரைவு"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "PCP/NAT-PMP நெறிமுறைகளை இயக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "UPNP IGD நெறிமுறையை இயக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "கூடுதல் பதிவுகளை இயக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "பாதுகாப்பான பயன்முறையை இயக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "காலாவதியாகிறது"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "வெளிப்புற துறைமுகம்"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "UPNP IGD & PCP/NAT-PMP க்கு அணுகல் வழங்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "இடைவெளியை அறிவிக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "விளக்கக்காட்சி முகவரி"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "நெறிமுறை"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "கூடுதல் பிழைத்திருத்த தகவல்களை கணினி பதிவில் வைக்கிறது"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr "தனிப்பயன் திசைவி வலை இடைமுகம் (விளக்கக்காட்சி) முகவரி ஐப் புகாரளிக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "KByte/s இல் அதிகபட்ச பதிவிறக்க வேகத்தைப் புகாரளிக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "KByte/s இல் அதிகபட்ச பதிவேற்ற வேகத்தைப் புகாரளிக்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "பணி நேரம் நேரத்திற்கு பதிலாக அறிக்கை முறை"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP துறைமுகம்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "ச்டன் புரவலன்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "ச்டன் துறைமுகம்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "பணி அணுகல் கட்டுப்பாட்டு பட்டியல்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "பணி அமைப்புகள்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "பணி அமைப்பு"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "பணி குத்தகை கோப்பு"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "தன்னாட்சி துறைமுகம் மேப்பிங் சேவையைத் தொடங்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "சேவையைத் தொடங்கவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s நெறிமுறைகள் உள்ளக நெட்வொர்க்கில் உள்ள வாடிக்கையாளர்களுக்கு துறைமுகம் வரைபடங்கள்/"
|
||||
"முன்னோக்கி திசைவியில் தன்னாட்சி முறையில் கட்டமைக்க அனுமதிக்கின்றன."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "செயலில் உள்ள துறைமுகம் வரைபடங்கள் எதுவும் இல்லை."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"கட்டுப்பாடற்ற முழு கூம்பு/ஒன்றுக்கு ஒன்று நாட்சிற்கான பொது ஐபிவி 4 முகவரியைக் கண்டறிய"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPNP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPNP IGD & PCP/NAT-PMP பணி"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPNP IGDV1 பொருந்தக்கூடிய பயன்முறை"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "தெரியவில்லை"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "வேகத்தை பதிவேற்றவும்"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "%s பயன்படுத்தவும்"
|
252
po/templates/upnp.pot
Normal file
252
po/templates/upnp.pot
Normal file
@ -0,0 +1,252 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Allow private IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow port forwarding when the external interface has a private IPv4 address. Use this if your upstream supports full-cone NAT (please try STUN first)"
|
||||
msgstr ""
|
260
po/tr/upnp.po
Normal file
260
po/tr/upnp.po
Normal file
@ -0,0 +1,260 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-03-10 22:01+0000\n"
|
||||
"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.5-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL'ler, hangi harici bağlantı noktalarının hangi dahili adreslere ve "
|
||||
"bağlantı noktalarına yeniden yönlendirilebileceğini belirtir, IPv6 always "
|
||||
"allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Eylem"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Aktif Yönlendirmeleri"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Gelişmiş Ayarlar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "IGDv2 yerine IGDv1 cihazı olarak duyuru yap"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "İzin ver"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Yalnızca istekte bulunan IP adreslerine yönlendirme eklemeye izin ver"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Açıklanan model numarası"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Açıklanan seri numarası"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "İstemci Adresi"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "İstemci Bağlantı Noktası"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Yorum"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Reddet"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Açıklama"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Cihaz UUID'si"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "İndirme hızı"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Ek günlük kaydını etkinleştir"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Güvenli modu etkinleştir"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Harici Bağlantı Noktası"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Bildirme aralığı"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Sunum URL'si"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Sistem günlüğüne fazladan hata ayıklama bilgisi koyar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Arka plan programı çalışma süresi yerine sistemi rapor et"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Bağlantı noktası"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN Ana Bilgisayarı"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN Bağlantı Noktası"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Genel Ayarlar"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s, yerel ağdaki istemcilerin yönlendiriciyi otomatik olarak "
|
||||
"yapılandırmasına izin verir."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Etkin yönlendirme yok."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD ve PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1 modunu etkinleştir"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Bilinmiyor"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Yükleme hızı"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "%s kullan"
|
267
po/uk/upnp.po
Normal file
267
po/uk/upnp.po
Normal file
@ -0,0 +1,267 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2025-01-14 00:52+0000\n"
|
||||
"Last-Translator: Максим Горпиніч <maksimgorpinic2005a@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
"Інтервал у 900 секунд призведе до %s сповіщень із мінімальним максимальним "
|
||||
"часом дії у 1800 секунд"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"Список контролю доступу (ACL) визначає, які зовнішні порти можуть бути "
|
||||
"переспрямовані на які внутрішні адреси й порти, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Дія"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Активні переспрямування"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "Активні карти портів UPnP IGD & PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Розширені налаштування"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Оголошувати як пристрій IGDv1 замість IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "Дозволити"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
"Дозволити додавання переспрямування тільки для IP-адрес, що надсилають запити"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Оголошуваний номер моделі"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Оголошуваний серійний номер"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Адреса клієнта"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "Ім'я клієнта"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Порт клієнта"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Примітка"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Видалити"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "Заперечувати"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "UUID пристрою"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Низхідне з'єднання"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "Увімкнути протоколи PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "Увімкніть протокол UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Увімкнути додаткове журналювання"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Увімкнути захищений режим"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "Термін дії закінчується"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Зовнішній порт"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "Надайте доступ до UPnP IGD & PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Інтервал сповіщення"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "URL презентації"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Включати додаткові відомості для налагодження до системного журналу"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
"Повідомити про URL-адресу веб-інтерфейсу спеціального маршрутизатора "
|
||||
"(презентації)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "Повідомте максимальну швидкість завантаження в кбайт/с"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "Повідомте максимальну швидкість завантаження в кбайт/с"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Повідомляти час безвідмовної роботи системи, а не сервісу"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Порт"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "Хост STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "Порт STUN"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Список контролю доступу до служби"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "Налаштування служби"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Загальні налаштування"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "Файл оренди послуг"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "Запустіть службу автономного відображення портів"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "Запустити службу"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"Протоколи %s дозволяють клієнтам у локальній мережі автоматично настроювати "
|
||||
"переспрямуванняна маршрутизаторі."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Немає активних переспрямувань."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
"Щоб виявити загальнодоступну адресу IPv4 для необмеженого повного конуса/"
|
||||
"один-на-одному NAT"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & PCP/NAT-PMP Service"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Увімкнути режим UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Невідомо"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Висхідне з'єднання"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Використовувати %s"
|
262
po/vi/upnp.po
Normal file
262
po/vi/upnp.po
Normal file
@ -0,0 +1,262 @@
|
||||
# upnp.pot
|
||||
# generated from ./applications/luci-upnp/luasrc/i18n/upnp.en.lua
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-08-16 06:59+0200\n"
|
||||
"PO-Revision-Date: 2024-01-26 16:51+0000\n"
|
||||
"Last-Translator: Hứa Đức Quân <huaducquan14@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsupnp/vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
"ACL chỉ định cổng bên ngoài nào có thể được chuyển hướng đến địa chỉ và cổng "
|
||||
"nội bộ nào, IPv6 always allowed."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "Hành động"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "Chuyển hướng đang hoạt động"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Cài đặt Nâng cao"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "Quảng cáo dưới dạng thiết bị IGDv1 thay vì IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "Chỉ cho phép thêm chuyển tiếp để yêu cầu địa chỉ IP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "Announced model number"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "Announced serial number"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "Client Address"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "Client Port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "Bình luận"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "Xoá"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "Mô tả"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "Device UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "Download speed"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "Bật ghi nhật ký bổ sung"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "Kích hoạt chế độ an toàn"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "Cổng bên ngoài"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "Vòng lặp thông báo"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "Presentation URL"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "Giao thức"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "Đưa thông tin sửa lỗi bổ sung vào nhật ký hệ thống"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "Hệ thống báo cáo thay vì thời gian hoạt động của daemon"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "Cổng"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN host"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN port"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "Service Access Control List"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "Các cài đặt chung"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
"%s cho phép các máy khách trong mạng cục bộ tự động cấu hình bộ định tuyến."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "Không có chuyển hướng đang hoạt động."
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & PCP/NAT-PMP Service"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "Kích hoạt chế độ UPnP IGDv1"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "Không xác định"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "Tuyến lên"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "Sử dụng %s"
|
256
po/yua/upnp.po
Normal file
256
po/yua/upnp.po
Normal file
@ -0,0 +1,256 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2023-11-30 14:34+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: yua\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.3-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr ""
|
268
po/zh_Hans/upnp.po
Normal file
268
po/zh_Hans/upnp.po
Normal file
@ -0,0 +1,268 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
|
||||
"PO-Revision-Date: 2024-12-25 15:41+0000\n"
|
||||
"Last-Translator: try496 <pinghejk@gmail.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/"
|
||||
"projects/openwrt/luciapplicationsupnp/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr "一个 900 秒的时间间隔将导致 %s 通知的最小 max-age 为 1800 秒"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr "ACL 指定了哪些客户端地址和端口可以被转发,IPv6 始终被允许。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "操作"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "活跃的端口转发"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "活跃的 UPnP IGD 和 PCP/NAT-PMP 端口转发"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "高级设置"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "将设备标识为 IGDv1(仅IPv4)设备,而不是 IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "允许"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "仅允许为请求的 IP 地址添加端口转发"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "通告的设备型号"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "通告的设备序列号"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "客户端地址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "客户端名称"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "客户端端口"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "注释"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "拒绝"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "设备 UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "下载速度"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "启用 PCP/NAT-PMP 协议"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "启用 UPnP IGD 协议"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "启用额外的日志"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "启用安全模式"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "到期时间"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "外部端口"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "授予访问 UPnP IGD 及 PCP/NAT-PMP 的权限"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "通知的时间间隔"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "服务网址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "协议"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "将额外的调试信息输出到系统日志中"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr "自定义路由器网页界面(展示页面)网址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "最大下载速度 kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "最大上传速度 kByte/s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "用系统运行时间代替进程运行时间"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP 端口"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN 主机"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN 端口"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "服务访问控制列表"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "服务设置"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "常规设置"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "服务租约文件"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "启动自动端口转发服务"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "启动服务"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr "%s 协议允许本地网络上的客户端自主配置路由器上的端口映射/转发。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "当前没有活跃的端口转发。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr "检测公网 IPv4 地址,以便用于不受限制的全锥形/一对一 NAT"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD 和 PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD 和 PCP/NAT-PMP 服务"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1 兼容模式"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "上传速度"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "使用 %s"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Allow private IPv4"
|
||||
msgstr "允许私有 IPv4 地址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow port forwarding when the external interface has a private IPv4 address. Use this if your upstream supports full-cone NAT (please try STUN first)"
|
||||
msgstr "当外部接口为私有IPv4地址时允许端口转发,适用于上游支持 full-cone NAT 的场景。(请先尝试 STUN)"
|
258
po/zh_Hant/upnp.po
Normal file
258
po/zh_Hant/upnp.po
Normal file
@ -0,0 +1,258 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2025-03-27 12:57+0000\n"
|
||||
"Last-Translator: 翻譯得真好下次別翻了 <x86_64-pc-linux-gnu@proton.me>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
|
||||
"projects/openwrt/luciapplicationsupnp/zh_Hant/>\n"
|
||||
"Language: zh_Hant\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.11-dev\n"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:180
|
||||
msgctxt ""
|
||||
"A 900s interval will result in %s (%s = SSDP) notifications with the minimum "
|
||||
"max-age of 1800s"
|
||||
msgid ""
|
||||
"A 900s interval will result in %s notifications with the minimum max-age of "
|
||||
"1800s"
|
||||
msgstr "最大有效期最小值為1800秒將間隔900秒產生%s通知"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:216
|
||||
msgid ""
|
||||
"ACL specify which client addresses and ports can be mapped, IPv6 always "
|
||||
"allowed."
|
||||
msgstr "ACL指定可以映射哪些用戶端位址和連接埠,IPv6始終允許。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:235
|
||||
msgid "Action"
|
||||
msgstr "動作"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:129
|
||||
msgid "Active Service Port Maps"
|
||||
msgstr "活動的連接埠映射"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:29
|
||||
msgid "Active UPnP IGD & PCP/NAT-PMP Port Maps"
|
||||
msgstr "活動的UPnP IGD & PCP/NAT-PMP連接埠映射"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:135
|
||||
msgid "Advanced Settings"
|
||||
msgstr "進階設定"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:148
|
||||
msgid "Advertise as IGDv1 (IPv4 only) device instead of IGDv2"
|
||||
msgstr "通告為IGDv1(僅IPv4)裝置而非IGDv2"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:236
|
||||
msgid "Allow"
|
||||
msgstr "允許"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:175
|
||||
msgid "Allow adding port maps for requesting IP addresses only"
|
||||
msgstr "只允許為請求的IP位址新增連接埠映射"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:199
|
||||
msgid "Announced model number"
|
||||
msgstr "公布的型號"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:202
|
||||
msgid "Announced serial number"
|
||||
msgstr "公布的序列號"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:41
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:99
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:223
|
||||
msgid "Client Address"
|
||||
msgstr "用戶端位址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:40
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:98
|
||||
msgid "Client Name"
|
||||
msgstr "用戶端名稱"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:42
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:100
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:227
|
||||
msgid "Client Port"
|
||||
msgstr "用戶端連接埠"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:221
|
||||
msgid "Comment"
|
||||
msgstr "註解"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:72
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:122
|
||||
msgid "Delete"
|
||||
msgstr "刪除"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:237
|
||||
msgid "Deny"
|
||||
msgstr "拒絕"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:46
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:104
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:196
|
||||
msgid "Device UUID"
|
||||
msgstr "裝置UUID"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:153
|
||||
msgid "Download speed"
|
||||
msgstr "下載速度"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:144
|
||||
msgid "Enable PCP/NAT-PMP protocols"
|
||||
msgstr "啟用PCP/NAT-PMP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:141
|
||||
msgid "Enable UPnP IGD protocol"
|
||||
msgstr "啟用UPnP IGD"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:209
|
||||
msgid "Enable additional logging"
|
||||
msgstr "啟用額外日誌"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:174
|
||||
msgid "Enable secure mode"
|
||||
msgstr "啟用安全模式"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:45
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:103
|
||||
msgid "Expires"
|
||||
msgstr "到期"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:43
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:101
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:231
|
||||
msgid "External Port"
|
||||
msgstr "外部連接埠"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/rpcd/acl.d/luci-app-upnp.json:3
|
||||
msgid "Grant access to UPnP IGD & PCP/NAT-PMP"
|
||||
msgstr "授予存取UPnP IGD & PCP/NAT-PMP的權限"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:179
|
||||
msgid "Notify interval"
|
||||
msgstr "通知間隔"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:191
|
||||
msgid "Presentation URL"
|
||||
msgstr "簡報網址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:44
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:102
|
||||
msgid "Protocol"
|
||||
msgstr "協定"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:210
|
||||
msgid "Puts extra debugging information into the system log"
|
||||
msgstr "將額外的除錯資訊寫入系統日誌"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:192
|
||||
msgid "Report custom router web interface (presentation) URL"
|
||||
msgstr "設定路由器web介面自訂(簡報)網址"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:154
|
||||
msgid "Report maximum download speed in kByte/s"
|
||||
msgstr "報告最大下載速度(kByte/s)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:158
|
||||
msgid "Report maximum upload speed in kByte/s"
|
||||
msgstr "報告最大上傳速度(kByte/s)"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:205
|
||||
msgid "Report system instead of service uptime"
|
||||
msgstr "報告系統上線時間而非服務上線時間"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:186
|
||||
msgid "SOAP/HTTP port"
|
||||
msgstr "SOAP/HTTP連接埠"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:165
|
||||
msgid "STUN host"
|
||||
msgstr "STUN主機"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:169
|
||||
msgid "STUN port"
|
||||
msgstr "STUN連接埠"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:215
|
||||
msgid "Service Access Control List"
|
||||
msgstr "服務存取控制清單"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:132
|
||||
msgid "Service Settings"
|
||||
msgstr "服務設定"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:134
|
||||
msgid "Service Setup"
|
||||
msgstr "服務設定"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:212
|
||||
msgid "Service lease file"
|
||||
msgstr "服務租約檔案"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:138
|
||||
msgid "Start autonomous port mapping service"
|
||||
msgstr "啟動自動連接埠映射服務"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:137
|
||||
msgid "Start service"
|
||||
msgstr "啟動服務"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:88
|
||||
msgctxt ""
|
||||
"The %s (%s = UPnP IGD & PCP/NAT-PMP) protocols allow clients on the local "
|
||||
"network to configure port maps/forwards on the router autonomously."
|
||||
msgid ""
|
||||
"The %s protocols allow clients on the local network to configure port maps/"
|
||||
"forwards on the router autonomously."
|
||||
msgstr "%s協定允許本地網路中的用戶端在路由器自動設定連接埠映射/轉送。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:80
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:76
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:126
|
||||
msgid "There are no active port maps."
|
||||
msgstr "沒有活動的連接埠映射。"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:163
|
||||
msgid ""
|
||||
"To detect the public IPv4 address for unrestricted full-cone/one-to-one NATs"
|
||||
msgstr "偵測不受限制的全錐/一對一NAT的公共IPv4位址"
|
||||
|
||||
#: applications/luci-app-upnp/root/usr/share/luci/menu.d/luci-app-upnp.json:3
|
||||
msgid "UPnP IGD & PCP"
|
||||
msgstr "UPnP IGD & PCP"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:87
|
||||
msgid "UPnP IGD & PCP/NAT-PMP Service"
|
||||
msgstr "UPnP IGD & PCP/NAT-PMP服務"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:147
|
||||
msgid "UPnP IGDv1 compatibility mode"
|
||||
msgstr "UPnP IGDv1相容模式"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/status/include/80_upnp.js:66
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:62
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:113
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:157
|
||||
msgid "Upload speed"
|
||||
msgstr "上傳速度"
|
||||
|
||||
#: applications/luci-app-upnp/htdocs/luci-static/resources/view/upnp/upnp.js:161
|
||||
msgctxt "Use %s (%s = STUN)"
|
||||
msgid "Use %s"
|
||||
msgstr "使用%s"
|
14
root/usr/share/luci/menu.d/luci-app-upnp.json
Normal file
14
root/usr/share/luci/menu.d/luci-app-upnp.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"admin/network/upnp": {
|
||||
"title": "UPnP IGD & PCP",
|
||||
"order": 62,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "upnp/upnp"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-app-upnp" ],
|
||||
"uci": { "upnpd": true }
|
||||
}
|
||||
}
|
||||
}
|
18
root/usr/share/rpcd/acl.d/luci-app-upnp.json
Normal file
18
root/usr/share/rpcd/acl.d/luci-app-upnp.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"luci-app-upnp": {
|
||||
"description": "Grant access to UPnP IGD & PCP/NAT-PMP",
|
||||
"read": {
|
||||
"ubus": {
|
||||
"luci.upnp": [ "get_status" ],
|
||||
"luci": [ "setInitAction" ]
|
||||
},
|
||||
"uci": [ "upnpd" ]
|
||||
},
|
||||
"write": {
|
||||
"ubus": {
|
||||
"luci.upnp": [ "delete_rule" ]
|
||||
},
|
||||
"uci": [ "upnpd" ]
|
||||
}
|
||||
}
|
||||
}
|
138
root/usr/share/rpcd/ucode/luci.upnp
Normal file
138
root/usr/share/rpcd/ucode/luci.upnp
Normal file
@ -0,0 +1,138 @@
|
||||
// Copyright 2022 Jo-Philipp Wich <jo@mein.io>
|
||||
// Licensed to the public under the Apache License 2.0.
|
||||
|
||||
'use strict';
|
||||
|
||||
import { access, open, popen } from 'fs';
|
||||
import { connect } from 'ubus';
|
||||
import { cursor } from 'uci';
|
||||
|
||||
// Establish ubus connection persistently outside of the call handler scope to
|
||||
// prevent premature GC'ing. Can be moved into `get_status` callback once
|
||||
// https://github.com/jow-/ucode/commit/a58fe4709f661b5f28e26701ea8638efccf5aeb6
|
||||
// is merged.
|
||||
const ubus = connect();
|
||||
|
||||
const methods = {
|
||||
get_status: {
|
||||
call: function(req) {
|
||||
const uci = cursor();
|
||||
|
||||
const rules = [];
|
||||
const leases = [];
|
||||
|
||||
const leasefile = open(uci.get('upnpd', 'config', 'upnp_lease_file'), 'r');
|
||||
|
||||
if (leasefile) {
|
||||
for (let line = leasefile.read('line'); length(line); line = leasefile.read('line')) {
|
||||
const record = split(line, ':', 6);
|
||||
|
||||
if (length(record) == 6) {
|
||||
push(leases, {
|
||||
proto: uc(record[0]),
|
||||
extport: +record[1],
|
||||
intaddr: arrtoip(iptoarr(record[2])),
|
||||
intport: +record[3],
|
||||
expires: record[4] - timelocal(localtime()),
|
||||
description: trim(record[5])
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
leasefile.close();
|
||||
}
|
||||
|
||||
const ipt = popen('iptables --line-numbers -t nat -xnvL MINIUPNPD 2>/dev/null');
|
||||
|
||||
if (ipt) {
|
||||
for (let line = ipt.read('line'); length(line); line = ipt.read('line')) {
|
||||
let m = match(line, /^([0-9]+)\s+([a-z]+).+dpt:([0-9]+) to:(\S+):([0-9]+)/);
|
||||
|
||||
if (m) {
|
||||
push(rules, {
|
||||
num: m[1],
|
||||
proto: uc(m[2]),
|
||||
extport: +m[3],
|
||||
intaddr: arrtoip(iptoarr(m[4])),
|
||||
intport: +m[5],
|
||||
descr: ''
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
ipt.close();
|
||||
}
|
||||
|
||||
const nft = popen('nft --handle list chain inet fw4 upnp_prerouting 2>/dev/null');
|
||||
|
||||
if (nft) {
|
||||
for (let line = nft.read('line'), num = 1; length(line); line = nft.read('line')) {
|
||||
let m = match(line, /^\t\tiif ".+" @nh,72,8 (0x6|0x11) th dport ([0-9]+) dnat ip to ([0-9.]+):([0-9]+)/);
|
||||
|
||||
if (m) {
|
||||
push(rules, {
|
||||
num: `${num}`,
|
||||
proto: (m[1] == '0x6') ? 'TCP' : 'UDP',
|
||||
extport: +m[2],
|
||||
intaddr: arrtoip(iptoarr(m[3])),
|
||||
intport: +m[4],
|
||||
descr: ''
|
||||
});
|
||||
|
||||
num++;
|
||||
}
|
||||
}
|
||||
|
||||
nft.close();
|
||||
}
|
||||
|
||||
return ubus.defer('luci-rpc', 'getHostHints', {}, function(rc, host_hints) {
|
||||
for (let rule in rules) {
|
||||
for (let lease in leases) {
|
||||
if (lease.proto == rule.proto &&
|
||||
lease.intaddr == rule.intaddr &&
|
||||
lease.intport == rule.intport &&
|
||||
lease.extport == rule.extport)
|
||||
{
|
||||
rule.descr = lease.description;
|
||||
rule.expires = lease.expires;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
for (let mac, hint in host_hints) {
|
||||
if (rule.intaddr in hint.ipaddrs) {
|
||||
rule.host_hint = hint.name;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
req.reply({ rules });
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
delete_rule: {
|
||||
args: { token: 'token' },
|
||||
call: function(req) {
|
||||
const idx = +req.args?.token;
|
||||
|
||||
if (idx > 0) {
|
||||
const uci = cursor();
|
||||
const leasefile = uci.get('upnpd', 'config', 'upnp_lease_file');
|
||||
|
||||
if (access(leasefile)) {
|
||||
system(['sed', '-i', '-e', `${idx}d`, leasefile]);
|
||||
system(['/etc/init.d/miniupnpd', 'restart']);
|
||||
}
|
||||
|
||||
return { result: 'OK' };
|
||||
}
|
||||
|
||||
return { result: 'Bad request' };
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return { 'luci.upnp': methods };
|
4
root/usr/share/ucitrack/luci-app-upnp.json
Normal file
4
root/usr/share/ucitrack/luci-app-upnp.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"config": "upnpd",
|
||||
"init": "miniupnpd"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user