update app
3
luci-mod-dashboard/Makefile
Executable file → Normal file
|
@ -1,11 +1,8 @@
|
|||
#
|
||||
# Copyright 2019-2020 ZHANG Zhao <Zhao.Zhang2@etu.univ-grenoble-alpes.fr>
|
||||
# Copyright 2020 Ycarus (Yannick Chabanois) <ycarus@zugaina.org> for OpenMPTCProuter
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
# Based on openwrt luci commit 03c77dafe3cfb922b995adfe9c0f8a75c98a18af
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
|
|
31
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/css/custom.css
Executable file → Normal file
|
@ -8,7 +8,6 @@
|
|||
|
||||
.Dashboard h3 {
|
||||
color:#000;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.Dashboard hr {
|
||||
|
@ -21,7 +20,7 @@
|
|||
}
|
||||
|
||||
.Dashboard .box-s1 {
|
||||
min-height: 550px;
|
||||
min-height: 466px;
|
||||
}
|
||||
|
||||
.Dashboard .internet-status-self .internet-status-info .title {
|
||||
|
@ -33,13 +32,6 @@
|
|||
background-color: #e0e0e0;
|
||||
}
|
||||
|
||||
.Dashboard div > table > tbody > tr:nth-of-type(2n), div > .table > .tr:nth-of-type(2n) {
|
||||
background-color: transparent;
|
||||
}
|
||||
.Dashboard .tr {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.Dashboard .title {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -109,11 +101,11 @@
|
|||
}
|
||||
|
||||
.Dashboard .internet-status-self .settings-info p:first-child span:first-child{
|
||||
font-size: 12px;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
//.Dashboard .internet-status-self .settings-info p:first-child span:first-child,
|
||||
.Dashboard .internet-status-self .settings-info p:nth-child(2) span:first-child,
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info p:first-child span:first-child,
|
||||
.Dashboard .router-status-wifi .wifi-info .settings-info p:nth-child(2) span:first-child{
|
||||
font-weight: 700;
|
||||
|
@ -128,10 +120,11 @@
|
|||
.Dashboard .settings-info p span:nth-child(2){
|
||||
display: inline-block;
|
||||
word-break: break-all;
|
||||
overflow: hidden;
|
||||
max-height: 16px;
|
||||
position: relative;
|
||||
top:2px;
|
||||
}
|
||||
|
||||
.Dashboard .settings-info p span:nth-child(2).label {
|
||||
padding: 1px 4px 1px 4px;
|
||||
font-size: 9.75px;
|
||||
}
|
||||
|
||||
.Dashboard .router-status-info .settings-info p span:nth-child(2){
|
||||
|
@ -199,14 +192,6 @@
|
|||
border-bottom:1px solid rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
.Dashboard .label-success {
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
.Dashboard .label-danger {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
/**
|
||||
* Responsive
|
||||
**/
|
||||
|
|
0
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/icons/devices.svg
Executable file → Normal file
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 452 B |
0
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/icons/internet.svg
Executable file → Normal file
Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 250 B |
0
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/icons/not-internet.svg
Executable file → Normal file
Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 250 B |
0
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/icons/router.svg
Executable file → Normal file
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 315 B |
0
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/icons/wireless.svg
Executable file → Normal file
Before Width: | Height: | Size: 268 B After Width: | Height: | Size: 268 B |
222
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js
Executable file → Normal file
|
@ -14,24 +14,16 @@ var callSystemInfo = rpc.declare({
|
|||
method: 'info'
|
||||
});
|
||||
|
||||
var callOpenMPTCProuterInfo = rpc.declare({
|
||||
object: 'openmptcprouter',
|
||||
method: 'status'
|
||||
});
|
||||
|
||||
|
||||
return baseclass.extend({
|
||||
|
||||
params: [],
|
||||
|
||||
formatBytes: function(a,b=2){if(0===a)return"0 Bytes";const c=0>b?0:b,d=Math.floor(Math.log(a)/Math.log(1024));return parseFloat((a/Math.pow(1024,d)).toFixed(c))+" "+["Bytes","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"][d]},
|
||||
load: function() {
|
||||
return Promise.all([
|
||||
network.getWANNetworks(),
|
||||
network.getWAN6Networks(),
|
||||
L.resolveDefault(callSystemBoard(), {}),
|
||||
L.resolveDefault(callSystemInfo(), {}),
|
||||
L.resolveDefault(callOpenMPTCProuterInfo(), {})
|
||||
L.resolveDefault(callSystemInfo(), {})
|
||||
]);
|
||||
},
|
||||
|
||||
|
@ -44,7 +36,7 @@ return baseclass.extend({
|
|||
var container_item = E('div', { 'class': 'settings-info'});
|
||||
|
||||
if ('internet' == type) {
|
||||
icon = (data.internet.v4.connected.value || data.internet.v6.connected.value) ? type : 'not-internet';
|
||||
icon = (data.v4.connected.value || data.v6.connected.value) ? type : 'not-internet';
|
||||
}
|
||||
|
||||
container_box.appendChild(E('div', { 'class': 'title'}, [
|
||||
|
@ -60,45 +52,19 @@ return baseclass.extend({
|
|||
container_box.appendChild(E('hr'));
|
||||
|
||||
if ('internet' == type) {
|
||||
|
||||
var container_internet_v4 = E('div');
|
||||
var container_internet_v6 = E('div');
|
||||
var container_internet_vps = E('div');
|
||||
|
||||
for(var idx in data['vps']) {
|
||||
var classname = ver,
|
||||
suppelements = '',
|
||||
visible = data['vps'][idx].visible;
|
||||
if ('title' === idx) {
|
||||
container_internet_vps.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('h4', {'class': ''}, [ data['vps'].title ]),
|
||||
])
|
||||
);
|
||||
continue;
|
||||
}
|
||||
if (visible) {
|
||||
container_internet_vps.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [ data['vps'][idx].title + ':' ]),
|
||||
E('span', {'class': ''}, [ data['vps'][idx].value ]),
|
||||
suppelements
|
||||
])
|
||||
);
|
||||
}
|
||||
}
|
||||
for(var idx in data) {
|
||||
|
||||
|
||||
for(var idx in data['internet']) {
|
||||
|
||||
for(var ver in data['internet'][idx]) {
|
||||
for(var ver in data[idx]) {
|
||||
var classname = ver,
|
||||
suppelements = '',
|
||||
visible = data['internet'][idx][ver].visible;
|
||||
visible = data[idx][ver].visible;
|
||||
|
||||
if('connected' === ver) {
|
||||
classname = data['internet'][idx][ver].value ? 'label label-success' : 'label label-danger';
|
||||
data['internet'][idx][ver].value = data['internet'][idx][ver].value ? _('yes') : _('no');
|
||||
classname = data[idx][ver].value ? 'label label-success' : 'label label-danger';
|
||||
data[idx][ver].value = data[idx][ver].value ? _('yes') : _('no');
|
||||
}
|
||||
|
||||
if ('v4' === idx) {
|
||||
|
@ -106,17 +72,17 @@ return baseclass.extend({
|
|||
if ('title' === ver) {
|
||||
container_internet_v4.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('h4', {'class': ''}, [ data['internet'][idx].title ]),
|
||||
E('span', {'class': ''}, [ data[idx].title ]),
|
||||
])
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
||||
if ('addrsv4' === ver) {
|
||||
var addrs = data['internet'][idx][ver].value;
|
||||
var addrs = data[idx][ver].value;
|
||||
if(Array.isArray(addrs) && addrs.length) {
|
||||
for(var ip in addrs) {
|
||||
data['internet'][idx][ver].value = addrs[ip].split('/')[0];
|
||||
data[idx][ver].value = addrs[ip].split('/')[0];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -124,8 +90,8 @@ return baseclass.extend({
|
|||
if (visible) {
|
||||
container_internet_v4.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [ data['internet'][idx][ver].title + ':' ]),
|
||||
E('span', {'class': classname }, [ data['internet'][idx][ver].value ]),
|
||||
E('span', {'class': ''}, [ data[idx][ver].title + ':' ]),
|
||||
E('span', {'class': classname }, [ data[idx][ver].value ]),
|
||||
suppelements
|
||||
])
|
||||
);
|
||||
|
@ -136,7 +102,7 @@ return baseclass.extend({
|
|||
if ('title' === ver) {
|
||||
container_internet_v6.appendChild(
|
||||
E('p', { 'class': 'mt-2'}, [
|
||||
E('h4', {'class': ''}, [ data['internet'][idx].title ]),
|
||||
E('span', {'class': ''}, [ data[idx].title ]),
|
||||
])
|
||||
);
|
||||
continue;
|
||||
|
@ -145,8 +111,8 @@ return baseclass.extend({
|
|||
if (visible) {
|
||||
container_internet_v6.appendChild(
|
||||
E('p', {'class': 'mt-2'}, [
|
||||
E('span', {'class': ''}, [data['internet'][idx][ver].title + ':']),
|
||||
E('span', {'class': classname}, [data['internet'][idx][ver].value]),
|
||||
E('span', {'class': ''}, [data[idx][ver].title + ':']),
|
||||
E('span', {'class': classname}, [data[idx][ver].value]),
|
||||
suppelements
|
||||
])
|
||||
);
|
||||
|
@ -155,19 +121,8 @@ return baseclass.extend({
|
|||
}
|
||||
}
|
||||
|
||||
container_item.appendChild(E('p', { 'class': 'table'}, [
|
||||
E('div', { 'class': 'tr' }, [
|
||||
E('div', { 'class': 'td' }, [ container_internet_vps ])
|
||||
]),
|
||||
E('div', { 'class': 'tr' }, [
|
||||
E('div', { 'class': 'td' }, [
|
||||
container_internet_v4
|
||||
]),
|
||||
E('div', { 'class': 'td' }, [
|
||||
container_internet_v6
|
||||
])
|
||||
])
|
||||
]));
|
||||
container_item.appendChild(container_internet_v4);
|
||||
container_item.appendChild(container_internet_v6);
|
||||
} else {
|
||||
for(var idx in data) {
|
||||
container_item.appendChild(
|
||||
|
@ -186,10 +141,13 @@ return baseclass.extend({
|
|||
},
|
||||
|
||||
renderUpdateWanData: function(data, v6) {
|
||||
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
var ifc = data[i];
|
||||
|
||||
if (v6) {
|
||||
var uptime = ifc.getUptime();
|
||||
this.params.internet.v6.uptime.value = (uptime > 0) ? '%t'.format(uptime) : '-';
|
||||
this.params.internet.v6.ipprefixv6.value = ifc.getIP6Prefix() || '-';
|
||||
this.params.internet.v6.gatewayv6.value = ifc.getGateway6Addr() || '-';
|
||||
this.params.internet.v6.protocol.value= ifc.getI18n() || E('em', _('Not connected'));
|
||||
|
@ -207,115 +165,102 @@ return baseclass.extend({
|
|||
}
|
||||
}
|
||||
},
|
||||
renderUpdateOpenMPTCProuterData: function(data, v6) {
|
||||
if (data.openmptcprouter != undefined) {
|
||||
if (data.openmptcprouter.wan_addr != '') this.params.omrvps.internet.v4.connected.value = true;
|
||||
if (data.openmptcprouter.wan_addr) this.params.omrvps.internet.v4.addrsv4.value = data.openmptcprouter.wan_addr || [ '-'];
|
||||
if (data.openmptcprouter.wan_addr6) this.params.omrvps.internet.v6.addrsv6.value = data.openmptcprouter.wan_addr6 || [ '-'];
|
||||
if (data.openmptcprouter.vps_kernel) this.params.omrvps.vps.version.value = data.openmptcprouter.vps_kernel + ' ' + data.openmptcprouter.vps_omr_version || [ '-'];
|
||||
if (data.openmptcprouter.vps_loadavg) {
|
||||
var vps_loadavg = data.openmptcprouter.vps_loadavg.split(" ");
|
||||
this.params.omrvps.vps.load.value = '%s, %s, %s'.format(vps_loadavg[0],vps_loadavg[1],vps_loadavg[2]);
|
||||
}
|
||||
if (data.openmptcprouter.vps_uptime) this.params.omrvps.vps.uptime.value = String.format('%t', data.openmptcprouter.vps_uptime) || [ '-'];
|
||||
if (data.openmptcprouter.proxy_traffic) this.params.omrvps.vps.trafficproxy.value = this.formatBytes(data.openmptcprouter.proxy_traffic) || [ '-'];
|
||||
if (data.openmptcprouter.vpn_traffic) this.params.omrvps.vps.trafficvpn.value = this.formatBytes(data.openmptcprouter.vpn_traffic) || [ '-'];
|
||||
if (data.openmptcprouter.total_traffic) this.params.omrvps.vps.traffictotal.value = this.formatBytes(data.openmptcprouter.total_traffic) || [ '-'];
|
||||
if (data.openmptcprouter.ipv6 != 'disabled') this.params.omrvps.internet.v6.connected.value = true;
|
||||
}
|
||||
},
|
||||
|
||||
renderInternetBox: function(data) {
|
||||
|
||||
this.params.omrvps = {
|
||||
vps: {
|
||||
title: _('Server'),
|
||||
this.params.internet = {
|
||||
|
||||
version: {
|
||||
title: _('Version'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
},
|
||||
v4: {
|
||||
title: _('IPv4 Internet'),
|
||||
|
||||
load: {
|
||||
title: _('Load'),
|
||||
connected: {
|
||||
title: _('Connected'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
value: false
|
||||
},
|
||||
|
||||
uptime: {
|
||||
title: _('Uptime'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
value: '-'
|
||||
},
|
||||
|
||||
trafficproxy: {
|
||||
title: _('Proxy traffic'),
|
||||
protocol: {
|
||||
title: _('Protocol'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
addrsv4: {
|
||||
title: _('IPv4'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
},
|
||||
|
||||
trafficvpn: {
|
||||
title: _('VPN traffic'),
|
||||
gatewayv4: {
|
||||
title: _('GatewayV4'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
value: '-'
|
||||
},
|
||||
|
||||
traffictotal: {
|
||||
title: _('Total traffic'),
|
||||
dnsv4: {
|
||||
title: _('DNSv4'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
value: ['-']
|
||||
}
|
||||
},
|
||||
|
||||
internet: {
|
||||
v6: {
|
||||
title: _('IPv6 Internet'),
|
||||
|
||||
v4: {
|
||||
title: _('IPv4 Internet'),
|
||||
|
||||
connected: {
|
||||
title: _('Connected'),
|
||||
visible: true,
|
||||
value: false
|
||||
},
|
||||
|
||||
addrsv4: {
|
||||
title: _('IPv4'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
}
|
||||
connected: {
|
||||
title: _('Connected'),
|
||||
visible: true,
|
||||
value: false
|
||||
},
|
||||
|
||||
v6: {
|
||||
title: _('IPv6 Internet'),
|
||||
uptime: {
|
||||
title: _('Uptime'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
connected: {
|
||||
title: _('Connected'),
|
||||
visible: true,
|
||||
value: false
|
||||
},
|
||||
protocol: {
|
||||
title: _('Protocol'),
|
||||
visible: true,
|
||||
value: ' - '
|
||||
},
|
||||
|
||||
ipprefixv6 : {
|
||||
title: _('IPv6 prefix'),
|
||||
visible: false,
|
||||
value: ' - '
|
||||
},
|
||||
ipprefixv6 : {
|
||||
title: _('IPv6 prefix'),
|
||||
visible: true,
|
||||
value: ' - '
|
||||
},
|
||||
|
||||
addrsv6: {
|
||||
title: _('IPv6'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
}
|
||||
addrsv6: {
|
||||
title: _('IPv6'),
|
||||
visible: false,
|
||||
value: [ '-' ]
|
||||
},
|
||||
|
||||
gatewayv6: {
|
||||
title: _('GatewayV6'),
|
||||
visible: true,
|
||||
value: '-'
|
||||
},
|
||||
|
||||
dnsv6: {
|
||||
title: _('DNSv6'),
|
||||
visible: true,
|
||||
value: [ '-' ]
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
//this.renderUpdateWanData(data[0], false);
|
||||
//this.renderUpdateWanData(data[1], true);
|
||||
this.renderUpdateOpenMPTCProuterData(data[4], true);
|
||||
this.renderUpdateWanData(data[0], false);
|
||||
this.renderUpdateWanData(data[1], true);
|
||||
|
||||
return this.renderHtml(this.params.omrvps, 'internet');
|
||||
return this.renderHtml(this.params.internet, 'internet');
|
||||
},
|
||||
|
||||
renderRouterBox: function(data) {
|
||||
|
@ -349,11 +294,6 @@ return baseclass.extend({
|
|||
value: datestr
|
||||
},
|
||||
|
||||
load: {
|
||||
title: _('Load Average'),
|
||||
value: Array.isArray(systeminfo.load) ? '%.2f, %.2f, %.2f'.format(systeminfo.load[0] / 65535.0,systeminfo.load[1] / 65535.0,systeminfo.load[2] / 65535.0) : null
|
||||
},
|
||||
|
||||
kernel: {
|
||||
title: _('Kernel Version'),
|
||||
value: boardinfo.kernel
|
||||
|
@ -371,7 +311,7 @@ return baseclass.extend({
|
|||
|
||||
release: {
|
||||
title: _('Firmware Version'),
|
||||
value: (typeof boardinfo.release !== "undefined") ? ((typeof boardinfo.release.description !== "undefined") ? boardinfo.release.description : null) : null
|
||||
value: boardinfo.release.description
|
||||
}
|
||||
};
|
||||
|
||||
|
|
12
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js
Executable file → Normal file
|
@ -70,13 +70,11 @@ return baseclass.extend({
|
|||
]));
|
||||
}
|
||||
|
||||
if (this.params.lan.devices.length > 0) {
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_devices);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_deviceslist);
|
||||
container_wapper.appendChild(container_box);
|
||||
}
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_devices);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_deviceslist);
|
||||
container_wapper.appendChild(container_box);
|
||||
|
||||
return container_wapper;
|
||||
},
|
||||
|
|
38
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js
Executable file → Normal file
|
@ -78,20 +78,20 @@ return baseclass.extend({
|
|||
|
||||
container_box.appendChild(container_radio);
|
||||
|
||||
var container_devices = E('div', { 'class': 'table assoclist devices-info' }, [
|
||||
E('div', { 'class': 'tr table-titles dashboard-bg' }, [
|
||||
E('div', { 'class': 'th nowrap' }, _('Hostname')),
|
||||
E('div', { 'class': 'th' }, _('Wireless')),
|
||||
E('div', { 'class': 'th' }, _('Signal')),
|
||||
E('div', { 'class': 'th' }, '%s / %s'.format( _('Up.'), _('Down.')))
|
||||
var container_devices = E('table', { 'class': 'table assoclist devices-info' }, [
|
||||
E('tr', { 'class': 'tr table-titles dashboard-bg' }, [
|
||||
E('th', { 'class': 'th nowrap' }, _('Hostname')),
|
||||
E('th', { 'class': 'th' }, _('Wireless')),
|
||||
E('th', { 'class': 'th' }, _('Signal')),
|
||||
E('th', { 'class': 'th' }, '%s / %s'.format( _('Up.'), _('Down.')))
|
||||
])
|
||||
]);
|
||||
|
||||
var container_devices_item;
|
||||
var container_devices_list = E('div', { 'class': 'table assoclist devices-info' });
|
||||
var container_devices_list = E('table', { 'class': 'table assoclist devices-info' });
|
||||
|
||||
for (var i =0; i < this.params.wifi.devices.length; i++) {
|
||||
container_devices_item = E('div', { 'class': 'tr cbi-rowstyle-1' });
|
||||
container_devices_item = E('tr', { 'class': 'tr cbi-rowstyle-1' });
|
||||
|
||||
for(var idx in this.params.wifi.devices[i]) {
|
||||
var device = this.params.wifi.devices[i];
|
||||
|
@ -109,7 +109,7 @@ return baseclass.extend({
|
|||
])
|
||||
]);
|
||||
} else if ('rate' == idx) {
|
||||
container_content = E('div', { 'class': 'td device-info' }, [
|
||||
container_content = E('td', { 'class': 'td device-info' }, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': ''}, [ device[idx].value.rx ]),
|
||||
E('br'),
|
||||
|
@ -117,7 +117,7 @@ return baseclass.extend({
|
|||
])
|
||||
]);
|
||||
} else {
|
||||
container_content = E('div', { 'class': 'td device-info'}, [
|
||||
container_content = E('td', { 'class': 'td device-info'}, [
|
||||
E('p', {}, [
|
||||
E('span', { 'class': ''}, [ device[idx].value ]),
|
||||
])
|
||||
|
@ -130,13 +130,11 @@ return baseclass.extend({
|
|||
container_devices_list.appendChild(container_devices_item);
|
||||
}
|
||||
|
||||
if (this.params.wifi.devices.length > 0) {
|
||||
container_devices.appendChild(container_devices_list);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_devices);
|
||||
container_box.appendChild(container_devices_list);
|
||||
container_wapper.appendChild(container_box);
|
||||
}
|
||||
container_devices.appendChild(container_devices_list);
|
||||
container_box.appendChild(E('hr'));
|
||||
container_box.appendChild(container_devices);
|
||||
container_box.appendChild(container_devices_list);
|
||||
container_wapper.appendChild(container_box);
|
||||
|
||||
return container_wapper;
|
||||
},
|
||||
|
@ -149,7 +147,7 @@ return baseclass.extend({
|
|||
for (var j = 0; j < network_items.length; j++) {
|
||||
var net = network_items[j],
|
||||
is_assoc = (net.getBSSID() != '00:00:00:00:00:00' && net.getChannel() && !net.isDisabled()),
|
||||
chan = net.getChannel(),
|
||||
chan = net.getChannel(),
|
||||
freq = net.getFrequency(),
|
||||
rate = net.getBitRate();
|
||||
|
||||
|
@ -264,6 +262,8 @@ return baseclass.extend({
|
|||
|
||||
this.renderUpdateData(data[0], data[1], data[2]);
|
||||
|
||||
return this.renderHtml();
|
||||
if (this.params.wifi.radios.length)
|
||||
return this.renderHtml();
|
||||
return E([]);
|
||||
}
|
||||
});
|
||||
|
|
0
luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/index.js
Executable file → Normal file
215
luci-mod-dashboard/po/ar/dashboard.po
Normal file
|
@ -0,0 +1,215 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
222
luci-mod-dashboard/po/bg/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-08-27 12:56+0000\n"
|
||||
"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.8.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Активен"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Архитектура"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Битрейт"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Свързан"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Табло"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Свързани устройства"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Долу."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Сваляне"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Криптиране"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Версия на firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "ГейтауейV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Разрешаване достъп до DHCP статус екран"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Разрешаване достъп до главен статус екран"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Разрешаване достъп до екран със системни маршрути"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Разрешаване достъп до екран с безжичен статус"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Хостнейм"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP адрес"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 префикс"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Интернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Версия на ядрото"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Местно време"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Модел"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Не е свързан"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Сигнал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Горе."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Качване"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Ъптайм"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Безжичен"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "не"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "да"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Свързан от"
|
219
luci-mod-dashboard/po/bn_BD/dashboard.po
Normal file
|
@ -0,0 +1,219 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-10-08 17:53+0000\n"
|
||||
"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/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 4.9-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "হোস্টনেম"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "আইপি এড্রেস"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "প্রোটোকল"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "সংকেত"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "সিস্টেম"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
219
luci-mod-dashboard/po/ca/dashboard.po
Normal file
|
@ -0,0 +1,219 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-03-08 10:38+0000\n"
|
||||
"Last-Translator: Roger Pueyo Centelles <roger.pueyo@guifi.net>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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.16.2-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitectura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositius"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Puja"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
222
luci-mod-dashboard/po/cs/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-01-18 00:56+0000\n"
|
||||
"Last-Translator: Lukáš Wagner <lukaswagner1@gmail.com>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Přenosová rychlost"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Připojeno"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP zařízení"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Řídicí panel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Zařízení"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Připojená zařízení"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Šifrování"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Verze firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Brána v4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Brána v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Poskytnout přístup k zobrazení stavu DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Poskytnout přístup k zobrazení stavu bezdrátové sítě"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Název počítače"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP adresa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Verze kernelu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Místní čas"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nepřipojeno"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Doba běhu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Bezdrátová síť"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "ne"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ano"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Připojeno od"
|
220
luci-mod-dashboard/po/da/dashboard.po
Normal file
|
@ -0,0 +1,220 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-12-08 22:46+0000\n"
|
||||
"Last-Translator: drax red <drax@outlook.dk>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/da/>\n"
|
||||
"Language: da\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.10-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Tilsluttet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-enheder"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Enheder"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Enheder tilsluttet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Ned."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Kryptering"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware-version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Giver adgang til visning af DHCP-status"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Giver adgang til hovedstatusdisplayet"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Giv adgang til systemets rutestatus"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Giv adgang til trådløs statusvisning"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Værtsnavn"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adresse"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-præfiks"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kerneversion"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Lokal tid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Ikke tilsluttet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Op."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Oppetid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Trådløs"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nej"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Tilsluttet siden"
|
222
luci-mod-dashboard/po/de/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-20 16:23+0000\n"
|
||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.18.1\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Verbunden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-Geräte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Übersicht"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Geräte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Verbundene Geräte"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Runter."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Verschlüsselung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware-Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Zugriff auf die DHCP-Statusanzeige gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Zugriff zur Hauptstatusanzeige gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Zugriff auf den Status der Systemroute gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Zugriff auf Wireless-Statusanzeige gewähren"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-Adresse"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4-Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6-Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-Präfix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel-Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Ortszeit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nicht verbunden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Aktiv."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Hochladen"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Laufzeit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "WLAN"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nein"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Verbunden seit"
|
222
luci-mod-dashboard/po/el/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-05-15 17:04+0000\n"
|
||||
"Last-Translator: MarioK239 <marios.k239@gmail.com>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.13-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Ενεργό"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Αρχιτεκτονική"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Ρυθμός bit"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Κανάλι"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Συνδεδεμένο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Συσκευές DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Ταμπλό"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Συσκευές"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Συσκευές Συνδεδεμένες"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Κάτω."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Λήψη"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Κρυπτογράφηση"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Έκδοση υλικολογισμικού"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην οθόνη κατάστασης DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην κύρια οθόνη κατάστασης"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην κατάσταση διαδρομής συστήματος"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Παραχωρήστε πρόσβαση στην οθόνη ασύρματης κατάστασης"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Διεύθυνση IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Ίντερνετ IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Ίντερνετ IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Πρόθεμα IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Διαδίκτυο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Έκδοση kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Τοπική ώρα"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Μοντέλο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Μη συνδεδεμένο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Πρωτόκολλο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Σήμα"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Σύστημα"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Πάνω."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Μεταφόρτωση"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Χρόνος λειτουργίας"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Ασύρματο"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "όχι"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ναί"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Συνδεδεμένο από"
|
222
luci-mod-dashboard/po/en/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-06-24 07:45+0000\n"
|
||||
"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n"
|
||||
"Language-Team: English <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/en/>\n"
|
||||
"Language: en\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.7.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Active"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architecture"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Channel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Connected"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Devices"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Devices"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Devices Connected"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Down."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Encryption"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Grant access to DHCP status display"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Grant access to main status display"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Grant access to the system route status"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Grant access to wireless status display"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP Address"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Local Time"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Not connected"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Up."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Uptime"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "yes"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Connected since"
|
223
luci-mod-dashboard/po/es/dashboard.po
Normal file
|
@ -0,0 +1,223 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-04-17 08:10+0000\n"
|
||||
"Last-Translator: Juan <benitesjn@gmail.com>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitectura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Tasa de bits"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivos DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tablero"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Desc."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Encriptación"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versión del firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Otorgar acceso a la pantalla de estado de DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Otorgar acceso a la pantalla de estado principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
#, fuzzy
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Otorgar acceso al estado de la ruta del sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Otorgar acceso a la pantalla de estado de Wi-Fi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nombre de host"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Dirección IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefijo IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versión del núcleo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Hora local"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "No conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Señal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Carga"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Cargar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tiempo de actividad"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wi-Fi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Conectado desde"
|
222
luci-mod-dashboard/po/fi/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-03-13 23:17+0000\n"
|
||||
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.12-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkkitehtuuri"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bittinopeus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanava"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Yhdistetty"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-laitteet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Kojelauta"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Laitteet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Yhdisteyt laitteet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Lataus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Lataus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Salaus"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Laiteohjelmiston versio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Salli pääsy DHCP-tilanäyttöön"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Salli pääsy päätilanäyttöön"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Salli pääsy järjestelmän reitin tilaan"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Salli pääsy langattoman tilan näyttöön"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Laitenimi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-osoite"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-etuliite"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Ytimen versio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Paikallinen aika"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Malli"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Ei yhdistetty"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokolla"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signaali"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Järjestelmä"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Lähetys"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Lähetys"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Toiminta-aika"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Langaton"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "ei"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "kyllä"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Yhdistetty lähtien"
|
197
luci-mod-dashboard/po/fr/dashboard.po
Executable file → Normal file
|
@ -1,223 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-02-19 07:53+0000\n"
|
||||
"Last-Translator: Weblate Admin <contact@openmptcprouter.com>\n"
|
||||
"Language-Team: French <http://weblate.openmptcprouter.com/projects/omr/"
|
||||
"lucimoddashboard/fr/>\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-11 13:51+0000\n"
|
||||
"Last-Translator: Edouard Choinière <e-c@live.ca>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.6.1\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:165
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:368
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architecture"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:245
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Débit"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:236
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:277
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Connecté"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Périphériques DHCP"
|
||||
msgstr "Appareils DHCP"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNS v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tableau de bord"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:136
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Périphériques"
|
||||
msgstr "Appareils"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Périphériques connectés"
|
||||
msgstr "Appareils connectés"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "En panne."
|
||||
msgstr "Déconnecté."
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:131
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Téléchargement"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Chiffrement"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:373
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Version du micrologiciel"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:173
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
msgstr "Ghz"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Passerelle V4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Passerelle V6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Permettre l'accès à l'affichage de l'état DHCP"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Permettre l'accès à l'affichage de l'état principal"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Permettre l’accès au status de routage"
|
||||
msgstr "Autoriser l'accès à l'état de l'itinéraire du système"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Permettre l'accès du status WIFI"
|
||||
msgstr "Permettre l'accès au status WIFI"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:224
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nom d'hôte"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adresse IP"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:283
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:116
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:274
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:305
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:290
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:299
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Préfixe IPv6"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:358
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Version du noyau"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "Load"
|
||||
msgstr "Charge"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:353
|
||||
msgid "Load Average"
|
||||
msgstr "Charge moyenne"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:348
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Heure locale"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:121
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:179
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:363
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modèle"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:202
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Non connecté"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "Proxy traffic"
|
||||
msgstr "Trafic proxy"
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocole"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:159
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:230
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:232
|
||||
msgid "Server"
|
||||
msgstr "Serveur"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:265
|
||||
msgid "Total traffic"
|
||||
msgstr "Trafic total"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "En ligne."
|
||||
msgstr "Connecté."
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:126
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Téléverser"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:343
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Temps de service"
|
||||
msgstr "Disponibilité"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:259
|
||||
msgid "VPN traffic"
|
||||
msgstr "Trafic VPN"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Sans-fil"
|
||||
msgstr "Sans fil"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "non"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "oui"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Connecté depuis"
|
||||
|
|
216
luci-mod-dashboard/po/he/dashboard.po
Normal file
|
@ -0,0 +1,216 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
215
luci-mod-dashboard/po/hi/dashboard.po
Normal file
|
@ -0,0 +1,215 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
223
luci-mod-dashboard/po/hu/dashboard.po
Normal file
|
@ -0,0 +1,223 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-08-12 12:55+0000\n"
|
||||
"Last-Translator: Tudós Péter <tudi.sk@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.8-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektúra"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitráta"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Csatorna"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Csatlakoztatott"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP eszközök"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Kezelőfelület"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Eszközök"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Csatlakozott eszközök"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Le."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Letöltés"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Titkosítás"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware verzió"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Átjáró V4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Átjáró V6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Gépnév"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP cím"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel Verzió"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Helyi idő"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nincs csatlakoztatva"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Jel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Rendszer"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Fel."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Feltöltés"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Futási idő"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Vezeték nélküli"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "igen"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Ennyi ideje csatlakoztatva"
|
220
luci-mod-dashboard/po/id/dashboard.po
Normal file
|
@ -0,0 +1,220 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2023-03-12 20:08+0000\n"
|
||||
"Last-Translator: Biangkerok32 <appblok@gmail.com>\n"
|
||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/id/>\n"
|
||||
"Language: id\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.16.2-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arsitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Terhubung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Perangkat DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dasbor"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Perangkat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Perangkat Terhubung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Turun."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Unduh"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Enkripsi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versi Firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Berikan akses ke tampilan status DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Berikan akses ke tampilan status utama"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Berikan akses ke status rute sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Berikan akses ke tampilan status wifi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Alamat IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versi Kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Waktu setempat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/detik"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Tidak terhubung"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinyal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Naik."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Waktu terkini"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wifi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "tidak"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ya"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Terhubung sejak"
|
222
luci-mod-dashboard/po/it/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-12-26 08:48+0000\n"
|
||||
"Last-Translator: Daniele Luisetto <daniele.luisetto1@gmail.com>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architettura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Connesso"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivi DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Pannello di controllo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivi connessi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Disconesso."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Crittografia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versione del Firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Consentire la visualizzazione dello stato del DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Consentire la visualizzazione dello stato generale"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Consentire l'accesso allo stato delle route di sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Consentire la visualizzazione dello stato del wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nome host"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Indirizzo IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefisso IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versione del Kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Data/ora locale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modello"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Non connesso"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocollo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Segnale"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "SIstema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "In funzione."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Carica"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tempo di attività"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sì"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Connesso da"
|
222
luci-mod-dashboard/po/ja/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-06-11 06:32+0000\n"
|
||||
"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.7-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "アクティブ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "アーキテクチャ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "ビットレート"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "チャンネル"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "接続中"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP デバイス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNS (v4)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNS (v6)"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "ダッシュボード"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "デバイス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "接続中のデバイス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "ダウン"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "暗号化"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "ファームウェア バージョン"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "ゲートウェイ (v4)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "ゲートウェイ (v6)"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "DHCPステータス表示へのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "メインステータス表示へのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "システムルートステータスへのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "無線ステータス表示へのアクセスを許可"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "ホスト名"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP アドレス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 インターネット"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 インターネット"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 プレフィックス"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "インターネット"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "カーネル バージョン"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "時刻"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbps"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "モデル"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "未接続"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "プロトコル"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "信号強度"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "システム"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "アップ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "アップロード"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "稼働時間"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "無線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "いいえ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "はい"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "接続時間"
|
219
luci-mod-dashboard/po/ko/dashboard.po
Normal file
|
@ -0,0 +1,219 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-01-10 10:50+0000\n"
|
||||
"Last-Translator: TheNoFace <fprhqkrtk303@naver.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "활성화"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "아키텍처"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "비트레이트"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "채널"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "연결됨"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP 장치"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "대시보드"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "장치"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "연결된 장치"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "다운."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "다운로드"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "암호화"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "펌웨어 버전"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "게이트웨이 IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "게이트웨이 IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "DHCP 상태 표시 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "기본 상태 표시 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "시스템 라우트 상태 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "무선 상태 표시 접근을 허가합니다"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "호스트명"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP 주소"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 인터넷"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 인터넷"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 접두사"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "인터넷"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "커널 버전"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "로컬 시간"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "모델"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "연결되지 않음"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "프로토콜"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "시그널"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "시스템"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "업."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "업로드"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "가동시간"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "무선"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "아니오"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "예"
|
215
luci-mod-dashboard/po/mr/dashboard.po
Normal file
|
@ -0,0 +1,215 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: mr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
215
luci-mod-dashboard/po/ms/dashboard.po
Normal file
|
@ -0,0 +1,215 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ms\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
230
luci-mod-dashboard/po/nb_NO/dashboard.po
Normal file
|
@ -0,0 +1,230 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-11-08 00:12+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/nb_NO/>\n"
|
||||
"Language: nb_NO\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.14.2\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
#, fuzzy
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Tilkoblet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Oversikt"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
#, fuzzy
|
||||
msgid "Devices Connected"
|
||||
msgstr "Tilkoblede enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Nede."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Last ned"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Kryptering"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Fastvareversjon"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
#, fuzzy
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
#, fuzzy
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Innvilg tilgang til DHCP-statusskjerm"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Innvilg tilgang til hovedstatusskjerm"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Innvilg tilgang til systemrutestatus"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Innvilg tilgang til trådløs statusskjerm"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Vertsnavn"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adresse"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4-Internett"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6-Internett"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6-prefiks"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internett"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kjerneversjon"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Lokal tid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
#, fuzzy
|
||||
msgid "Mac"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modell"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Ikke tilkoblet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#, fuzzy
|
||||
msgid "Up."
|
||||
msgstr "Oppe."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
#, fuzzy
|
||||
msgid "Upload"
|
||||
msgstr "Last opp"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Oppetid"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
#, fuzzy
|
||||
msgid "Wireless"
|
||||
msgstr "Trådløst"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nei"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Tilkoblet siden"
|
219
luci-mod-dashboard/po/nl/dashboard.po
Normal file
|
@ -0,0 +1,219 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-11 03:31+0000\n"
|
||||
"Last-Translator: xtz1983 <xtz1983@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architectuur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanaal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Verbonden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Apparaten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Apparaten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Verbonden Apparaten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Uitgeschakeld."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Versleuteling"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware Versie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Toegang verlenen tot weergave van DHCP-status"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Toegang verlenen tot hoofdstatusweergave"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Toegang verlenen tot de status van het systeemrouteringsproces"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Toegang verlenen tot weergave van draadloze status"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Hostnaam"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP Adres"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Kernel Versie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Lokale tijd"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Geen verbinding"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signaal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Systeem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Boven."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Uploaden"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Bedrijfstijd"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Draadloos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nee"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "ja"
|
223
luci-mod-dashboard/po/pl/dashboard.po
Normal file
|
@ -0,0 +1,223 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-03 11:51+0000\n"
|
||||
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktywny"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Szybkość transmisji"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanał"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Połączony"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Urządzenia DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Info"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Urządzenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Podłączone urządzenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Pobieranie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Pobierz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Szyfrowanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Wersja firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "BramaV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "BramaV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Udziel dostępu do wyświetlania statusu DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Udziel dostępu do głównego wyświetlacza stanu"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Udziel dostępu do statusu systemowych tras"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Udziel dostępu do wyświetlania statusu sieci bezprzewodowej"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nazwa hosta"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adres IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefiks IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Wersja kernela"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Czas lokalny"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nie podłączony"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokół"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sygnał"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Wysyłanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Wysyłanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Czas pracy"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Sieć bezprzewodowa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "tak"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Czas połączenia"
|
222
luci-mod-dashboard/po/pt/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-11-30 14:48+0000\n"
|
||||
"Last-Translator: Gonçalo Pereira <goncalo_pereira@outlook.pt>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.15-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitectura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Taxa de bits"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Ligado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivos DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Painel de Controlo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivos ligados"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Em Baixo."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Descarregar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Encriptação"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versão do firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Conceder acesso à visualização do estado do DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Conceder acesso à visualização do estado principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Conceder acesso ao estado da rota do sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Conceda acesso à visualização da condição do wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nome do equipamento"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Endereço IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefixo IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versão do kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Hora local"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Não conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Ativo."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Enviar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tempo de atividade"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Rede sem fios"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "não"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sim"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Ligado desde"
|
222
luci-mod-dashboard/po/pt_BR/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-05 03:51+0000\n"
|
||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/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 4.18-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arquitetura"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Taxa de bits"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispositivos DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Painel de Controle"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispositivos"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Baix."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Baixar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Criptografia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versão do firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Conceda acesso à visualização da condição do DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Conceda acesso à exibição do status principal"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Conceda acesso à condição da rota do sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Conceda acesso à visualização da condição do wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Nome do equipamento"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Endereço IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefixo IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versão do kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Hora local"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Modelo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Não conectado"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocolo"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Envio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Envio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Tempo de atividade"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Rede sem fio"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "não"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "sim"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Conectado desde"
|
223
luci-mod-dashboard/po/ro/dashboard.po
Normal file
|
@ -0,0 +1,223 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-11-04 20:04+0000\n"
|
||||
"Last-Translator: Simona Iacob <s@zp1.net>\n"
|
||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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.14.2-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arhitectură"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Rata de biți"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Canal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Conectat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Dispozitive DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Tabloul de bord"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Dispozitive"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Dispozitive conectate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Oprit."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Descărcați"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Criptare"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Versiunea Firmware-ului"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Acordați acces la afișarea stării DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Acordați acces la afișarea principală a stării"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Acordați accesul la starea rutei sistemului"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Acordați acces la afișarea stării wireless"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Numele gazdei ( hostname )"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adresa IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Prefix IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Versiunea Kernel-ului"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Ora locală"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nu este conectat"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protocol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Semnal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Sus."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Încărcați"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Timp de funcționare"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Fără fir"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "da"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Conectat de la"
|
225
luci-mod-dashboard/po/ru/dashboard.po
Executable file → Normal file
|
@ -1,224 +1,223 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-06-16 10:51+0000\n"
|
||||
"Last-Translator: Dmitry Galenko <d@monteops.com>\n"
|
||||
"Language-Team: Russian <http://weblate.openmptcprouter.com/projects/omr/"
|
||||
"lucimoddashboard/ru/>\n"
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-04-16 06:28+0000\n"
|
||||
"Last-Translator: st7105 <st7105@gmail.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.6.1\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.17-dev\n"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:165
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Активный"
|
||||
msgstr "Активно"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:368
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Процессор"
|
||||
msgstr "Архитектура"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:245
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Скорость"
|
||||
msgstr "Битрейт"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:236
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:277
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Подключено"
|
||||
msgstr "Подключен"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Устройства DHCP"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Дашборд"
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:136
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Информационная панель"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Устройства"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Подключенные устройства"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Не работает."
|
||||
msgstr "Скач."
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:131
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Получение"
|
||||
msgstr "Скачать"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Шифрование"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:373
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Версия ПО"
|
||||
msgstr "Версия прошивки"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:173
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
msgstr "ГГц"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Разрешить просмотр информации о DHCP"
|
||||
msgstr "Предоставить доступ к просмотру состояния DHCP"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Разрешить просмотр информации основной информации"
|
||||
msgstr "Предоставить доступ к отображению основного состояния"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Разрешить просмотр информации о маршрутах"
|
||||
msgstr "Предоставить доступ к состоянию системных маршрутов"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Разрешить просмотр информации о беспроводных сетях"
|
||||
msgstr "Предоставить доступ к просмотру состояния беспроводных сетей"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:224
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Имя хоста"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-адрес"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:283
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:116
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:274
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
msgstr "IPv4 Интернет"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:305
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:290
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
msgstr "IPv6 Интернет"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:299
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Префикс IPv6"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
msgstr "Интернет"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:358
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Версия ядра"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "Load"
|
||||
msgstr "Загрузка"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:353
|
||||
msgid "Load Average"
|
||||
msgstr "Средняя загрузка"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:348
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Время хоста"
|
||||
msgstr "Время"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:121
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:179
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
msgstr "Мбит/с"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:363
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Модель"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:202
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Не подключено"
|
||||
msgstr "Не подключен"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "Proxy traffic"
|
||||
msgstr "Трафик через прокси"
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:159
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:230
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:232
|
||||
msgid "Server"
|
||||
msgstr "Сервер"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Сигнал"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:265
|
||||
msgid "Total traffic"
|
||||
msgstr "Трафик всего"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Работает."
|
||||
msgstr "Загр."
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:126
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Отправка"
|
||||
msgstr "Загрузить"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:343
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Uptime"
|
||||
msgstr "Время работы"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:259
|
||||
msgid "VPN traffic"
|
||||
msgstr "Трафик VPN"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "Version"
|
||||
msgstr "Версия"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Безпроводной"
|
||||
msgstr "Беспроводная сеть"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "нет"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "да"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Подключено с"
|
||||
|
|
219
luci-mod-dashboard/po/sk/dashboard.po
Normal file
|
@ -0,0 +1,219 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-15 17:44+0000\n"
|
||||
"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
|
||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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.18.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Architektúra"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitová rýchlosť"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Pripojené"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Zariadenia DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Zariadenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Pripojené zariadenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Šifrovanie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Verzia firmvéru"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Brána v4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Brána v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Udeliť prístup k zobrazeniu stavu DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Názov hostiteľa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Adresa IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Internet IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Internet IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Verzia jadra"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Miestny čas"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Nepripojené"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Signál"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Systém"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Doba spustenia"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Bezdrôtová sieť"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "nie"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "áno"
|
222
luci-mod-dashboard/po/sv/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2022-12-04 12:08+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.15-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Arkitektur"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bithastighet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Ansluten"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Instrumentbräda"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Enheter"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Enheter anslutna"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Ner."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Nedladdning"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Kryptering"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Firmware Version"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Ge åtkomst till DHCP-statusvisning"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Ge åtkomst till huvudstatusvisning"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokoll"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Ladda upp"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Ansluten sedan"
|
156
luci-mod-dashboard/po/templates/dashboard.pot
Executable file → Normal file
|
@ -1,214 +1,208 @@
|
|||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:165
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:368
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:245
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:236
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:277
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:136
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:131
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:373
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:173
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr ""
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:224
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:283
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:116
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:274
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:305
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:290
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:299
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:358
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "Load"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:353
|
||||
msgid "Load Average"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:348
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:121
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:179
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:363
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:202
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "Proxy traffic"
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:159
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:230
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:232
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:265
|
||||
msgid "Total traffic"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:126
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:343
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:259
|
||||
msgid "VPN traffic"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
|
222
luci-mod-dashboard/po/tr/dashboard.po
Normal file
|
@ -0,0 +1,222 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-05-11 11:34+0000\n"
|
||||
"Last-Translator: semih <semiht@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Etkin"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Mimari"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bit hızı"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Bağlandı"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP Aygıtları"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Denetim Paneli"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Aygıtlar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Bağlı Aygıtlar"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "İnd."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "İndir"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Şifreleme"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Ürün Yazılımı Sürümü"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "DHCP durum ekranına erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Ana durum ekranına erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Sistem yönlendirme durumuna erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Kablosuz durum ekranına erişim izni verin"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Sunucu adı"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP Adresi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 İnternet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 İnternet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 ön eki"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "İnternet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Çekirdek Sürümü"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Yerel Zaman"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Bağlı değil"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Sinyal"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Sistem"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Yük."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Yükleme"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Çalışma süresi"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Kablosuz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "hayır"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "evet"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Şu tarihten beri bağlı"
|
223
luci-mod-dashboard/po/uk/dashboard.po
Normal file
|
@ -0,0 +1,223 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2021-11-04 17:37+0000\n"
|
||||
"Last-Translator: Paul Dee <itsascambutmailmeanyway+weblate@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.9-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Активний"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Архітектура"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Бітрейт"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Канал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Підключений"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP-пристрої"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Панелі"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Пристрої"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Пристрої, підключені"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Вниз."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Завантажити"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Шифрування"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Версія прошивки"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "Ггц"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "Шлюз V4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "Шлюз v6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Надання доступу до відображення стану DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Надання доступу до основного відображення стану"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Надати доступ до статусу системних маршрутів"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Надати доступ до відображення статусу бездротових мереж"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Ім'я хоста"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP-адреса"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "Інтернет IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "Інтернет IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "Префікс IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Інтернет"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Версія ядра"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Місцевий час"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Мбіт/с"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Модель"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Не підключено"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Протокол"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Сигнал"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Система"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Вгору."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Завантажити"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Час безвідмовної роботи"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Бездротові мережі"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "Ні"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "так"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "Під'єднано з"
|
219
luci-mod-dashboard/po/vi/dashboard.po
Normal file
|
@ -0,0 +1,219 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2023-06-20 13:52+0000\n"
|
||||
"Last-Translator: Quy <haonguyen93056@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"lucimodulesluci-mod-dashboard/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 4.18.1\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "Kích hoạt"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "Kiến trúc"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "Bitrate"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "Kênh"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "Đã kết nối"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "Thiết bị DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "Màn hình chính"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "Các thiết bị"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "Thiết bị đã kết nối"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "Sập."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "Tải xuống"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "Mã hóa"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "Phiên bản firmware"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "GatewayV4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "GatewayV6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "Cấp quyền truy cập vào màn hình trạng thái DHCP"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "Cấp quyền truy cập vào màn hình trạng thái chính"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "Cấp quyền truy cập vào trạng thái tuyến đường hệ thống"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "Cấp quyền truy cập vào hiển thị trạng thái không dây"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "Tên máy chủ (hostname)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "Địa chỉ IP"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6 prefix"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "Internet"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "Phiên bản Kernel"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "Giờ địa phương"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "Model"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "Không kết nối"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "Giao thức"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "Tín hiệu"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "Hệ thống"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "Đã mở."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "Tải lên"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "Thời gian hoạt động"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "Không dây"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "Không"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "có"
|
215
luci-mod-dashboard/po/zh_Hans/dashboard.po
Executable file → Normal file
|
@ -1,223 +1,220 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-06-02 09:51+0000\n"
|
||||
"Last-Translator: antrouter <xinyangla@188.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <http://weblate.openmptcprouter.com/"
|
||||
"projects/omr/lucimoddashboard/zh_Hans/>\n"
|
||||
"PO-Revision-Date: 2022-05-07 19:19+0000\n"
|
||||
"Last-Translator: 王攀 <41330784@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.6.1\n"
|
||||
"X-Generator: Weblate 4.12.1\n"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:165
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "激活"
|
||||
msgstr "活跃"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:368
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "构架"
|
||||
msgstr "架构"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:245
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "比特率"
|
||||
msgstr "速率"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:236
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "频道"
|
||||
msgstr "信道"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:277
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "连接"
|
||||
msgstr "已连接"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP 设备"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "仪表盘"
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:136
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "概览"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "设备"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "连接的设备"
|
||||
msgstr "已连接设备"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "下."
|
||||
msgstr "下行."
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:131
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "下载"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "加密"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:373
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "固件版本"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:173
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "Ghz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "IPv4 网关"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "IPv6 网关"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "授予访问 DHCP 状态显示的权限"
|
||||
msgstr "授予访问 DHCP 状态展示的权限"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "授予访问主状态显示的权限"
|
||||
msgstr "授予访问主状态展示的权限"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "授予对系统路由状态的访问权限"
|
||||
msgstr "授予访问系统路由状态的权限"
|
||||
|
||||
#: luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "授予访问无线状态显示的权限"
|
||||
msgstr "授予访问无线状态展示的权限"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:224
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "主机名"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP地址"
|
||||
msgstr "IP 地址"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:283
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:116
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:274
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4互联网"
|
||||
msgstr "IPv4 网络"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:305
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:290
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6互联网"
|
||||
msgstr "IPv6 网络"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:299
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6前缀"
|
||||
msgstr "IPv6 前缀"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "互联网"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:358
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "内核版本"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "Load"
|
||||
msgstr "负载"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:353
|
||||
msgid "Load Average"
|
||||
msgstr "平均负载"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:348
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "本地时间"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC地址"
|
||||
msgstr "MAC"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:121
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "mac地址"
|
||||
msgstr "Mac"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:179
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:363
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "型号"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:202
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "未连接"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "Proxy traffic"
|
||||
msgstr "代理流量"
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "协议"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:159
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:230
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:232
|
||||
msgid "Server"
|
||||
msgstr "服务器"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "信号"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:41
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "系统"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:265
|
||||
msgid "Total traffic"
|
||||
msgstr "总流量"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "上."
|
||||
msgstr "上行"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:126
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "上传"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:343
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "开机时间"
|
||||
msgstr "运行时间"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:259
|
||||
msgid "VPN traffic"
|
||||
msgstr "VPN流量"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "Version"
|
||||
msgstr "版本"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "无线"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "否"
|
||||
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:101
|
||||
#: luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "是"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "连接开始时间"
|
||||
|
|
220
luci-mod-dashboard/po/zh_Hant/dashboard.po
Normal file
|
@ -0,0 +1,220 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2022-12-25 07:50+0000\n"
|
||||
"Last-Translator: Hulen <shift0106@gmail.com>\n"
|
||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/lucimodulesluci-mod-dashboard/zh_Hant/>\n"
|
||||
"Language: zh_Hant\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||
msgid "Active"
|
||||
msgstr "已啓用"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:308
|
||||
msgid "Architecture"
|
||||
msgstr "架構"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:181
|
||||
msgid "BSSID"
|
||||
msgstr "BSSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:175
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:243
|
||||
msgid "Bitrate"
|
||||
msgstr "位元率"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:169
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:234
|
||||
msgid "Channel"
|
||||
msgstr "頻道"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:177
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:217
|
||||
msgid "Connected"
|
||||
msgstr "已連線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||
msgid "DHCP Devices"
|
||||
msgstr "DHCP 裝置"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:207
|
||||
msgid "DNSv4"
|
||||
msgstr "DNSv4"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:253
|
||||
msgid "DNSv6"
|
||||
msgstr "DNSv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||
msgid "Dashboard"
|
||||
msgstr "儀表板"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||
msgid "Devices"
|
||||
msgstr "裝置"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||
msgid "Devices Connected"
|
||||
msgstr "已連線裝置"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Down."
|
||||
msgstr "下載."
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||
msgid "Download"
|
||||
msgstr "下載"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||
msgid "Encryption"
|
||||
msgstr "加密(Encryption)"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||
msgid "Firmware Version"
|
||||
msgstr "韌體版本"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:171
|
||||
msgid "GHz"
|
||||
msgstr "GHz"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:201
|
||||
msgid "GatewayV4"
|
||||
msgstr "IPv4 閘道"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:247
|
||||
msgid "GatewayV6"
|
||||
msgstr "IPv6 閘道"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:25
|
||||
msgid "Grant access to DHCP status display"
|
||||
msgstr "授予存取 DHCP 狀態顯示的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:12
|
||||
msgid "Grant access to main status display"
|
||||
msgstr "授予存取主要狀態顯示的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||
msgid "Grant access to the system route status"
|
||||
msgstr "授予存取系統路由狀態的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:34
|
||||
msgid "Grant access to wireless status display"
|
||||
msgstr "授予存取無線狀態顯示的權限"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:30
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:83
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:222
|
||||
msgid "Hostname"
|
||||
msgstr "主機名稱"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||
msgid "IP Address"
|
||||
msgstr "IP 位址"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:195
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:114
|
||||
msgid "IPv4"
|
||||
msgstr "IPv4 地址"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:174
|
||||
msgid "IPv4 Internet"
|
||||
msgstr "IPv4 網路"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:241
|
||||
msgid "IPv6"
|
||||
msgstr "IPv6"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:214
|
||||
msgid "IPv6 Internet"
|
||||
msgstr "IPv6 網路"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:235
|
||||
msgid "IPv6 prefix"
|
||||
msgstr "IPv6字首"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "Internet"
|
||||
msgstr "網際網路"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:298
|
||||
msgid "Kernel Version"
|
||||
msgstr "核心版本"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||
msgid "Local Time"
|
||||
msgstr "本地時間"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:32
|
||||
msgid "MAC"
|
||||
msgstr "MAC"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:119
|
||||
msgid "Mac"
|
||||
msgstr "Mac"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:177
|
||||
msgid "Mbit/s"
|
||||
msgstr "Mbit/s"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:303
|
||||
msgid "Model"
|
||||
msgstr "裝置型號"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:153
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:160
|
||||
msgid "Not connected"
|
||||
msgstr "尚未連線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:189
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:229
|
||||
msgid "Protocol"
|
||||
msgstr "協定"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:157
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:228
|
||||
msgid "SSID"
|
||||
msgstr "SSID"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:85
|
||||
msgid "Signal"
|
||||
msgstr "訊號"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:33
|
||||
msgid "System"
|
||||
msgstr "系統"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||
msgid "Up."
|
||||
msgstr "上傳"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||
msgid "Upload"
|
||||
msgstr "上傳"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:183
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:223
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:288
|
||||
msgid "Uptime"
|
||||
msgstr "上線時間"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:9
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:84
|
||||
msgid "Wireless"
|
||||
msgstr "無線"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "no"
|
||||
msgstr "否"
|
||||
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:67
|
||||
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:65
|
||||
msgid "yes"
|
||||
msgstr "是"
|
||||
|
||||
#~ msgid "Connected since"
|
||||
#~ msgstr "連線開始時間"
|