first commit
commit
3b0aaf3d1b
@ -0,0 +1,18 @@
|
|||||||
|
#
|
||||||
|
# Copyright 2019-2020 ZHANG Zhao <Zhao.Zhang2@etu.univ-grenoble-alpes.fr>
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
LUCI_TITLE:=LuCI Dashboard Pages
|
||||||
|
LUCI_DEPENDS:=+luci-base +libiwinfo
|
||||||
|
|
||||||
|
PKG_BUILD_DEPENDS:=iwinfo
|
||||||
|
PKG_LICENSE:=Apache-2.0
|
||||||
|
|
||||||
|
include ../../luci.mk
|
||||||
|
|
||||||
|
# call BuildPackage - OpenWrt buildroot signature
|
||||||
|
|
@ -0,0 +1,285 @@
|
|||||||
|
/**
|
||||||
|
* Dashboard Principals Styles
|
||||||
|
**/
|
||||||
|
|
||||||
|
.Dashboard {
|
||||||
|
color: #212529!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard h3 {
|
||||||
|
color:#000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard hr {
|
||||||
|
border: 0;
|
||||||
|
height: 0;
|
||||||
|
overflow: visible;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: content-box;
|
||||||
|
border-top: 1px solid rgba(0,0,0,.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .box-s1 {
|
||||||
|
min-height: 466px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .internet-status-self .internet-status-info .title {
|
||||||
|
height: 97px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .dashboard-bg {
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #858585;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .title {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content {
|
||||||
|
display: flex;
|
||||||
|
vertical-align: top;
|
||||||
|
padding: 20px 0 0 0;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content > div {
|
||||||
|
width:100%;
|
||||||
|
padding:1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .settings-info {
|
||||||
|
padding-top:1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .internet-status-info .settings-info {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .internet-status-info .settings-info > div > p > i{
|
||||||
|
padding: 0 0 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content > div:nth-child(2) {
|
||||||
|
margin-left:20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .devices-list .devices-info {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .devices-list .devices-info .tr .td{
|
||||||
|
padding:0px 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .devices-list .devices-info .tr .td:first-child {
|
||||||
|
width: 33%;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .devices-list hr:nth-child(4) {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-lan .devices-list .table-titles .th:first-child {
|
||||||
|
width: 35%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-self .router-status-info .settings-info {
|
||||||
|
padding-left:27px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-self .router-status-info .title h3 {
|
||||||
|
margin-top:-2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-info svg {
|
||||||
|
width: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .internet-status-self .settings-info p:first-child span:first-child{
|
||||||
|
font-size: 15px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .settings-info p span:first-child {
|
||||||
|
width: 35%;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .settings-info p span:nth-child(2){
|
||||||
|
display: inline-block;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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){
|
||||||
|
max-width: 283px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .settings-info p span.ssid {
|
||||||
|
max-height: 18px;
|
||||||
|
top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .settings-info p span.encryption {
|
||||||
|
max-width: 82px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .settings-info,
|
||||||
|
.Dashboard .router-status-lan .lan-info .settings-info
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td {
|
||||||
|
padding: 0 10px 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:first-child {
|
||||||
|
width: 30%;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:nth-child(2) {
|
||||||
|
width: 21%;
|
||||||
|
overflow: hidden;
|
||||||
|
padding-left:0;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .settings-info{
|
||||||
|
padding:1em 0 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:nth-child(3) {
|
||||||
|
width: 22%;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
top: -3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .devices-info .tr .td:nth-child(5) {
|
||||||
|
width: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info > hr:last-child {
|
||||||
|
margin-bottom:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .devices-info .device-info .progress {
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .wifi-info .devices-info .table-titles {
|
||||||
|
border-bottom:1px solid rgba(0,0,0,.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Responsive
|
||||||
|
**/
|
||||||
|
@media screen and (min-width: 200px) and (max-width: 640px) {
|
||||||
|
|
||||||
|
.Dashboard .cbi-section-1 > .section-content {
|
||||||
|
padding-top:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content > div{
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content > div:first-child {
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content > div:nth-child(2) {
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-self .router-status-info .settings-info {
|
||||||
|
padding:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .internet-status-info .settings-info {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .internet-status-info .settings-info > div:first-child {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border-bottom: 1px solid rgba(0,0,0,.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .router-status-lan .devices-info .table-titles {
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .settings-info > div{
|
||||||
|
flex:1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .router-status-lan .devices-info .table-titles .th:last-child{
|
||||||
|
padding-left: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .router-status-lan .devices-info .td:first-child{
|
||||||
|
flex: 2 2 31%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .router-status-lan .devices-info .td:nth-child(2){
|
||||||
|
flex: 1 1 24%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .section-content .router-status-lan .devices-info .td:last-child{
|
||||||
|
word-wrap: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .router-status-wifi .wifi-info .settings-info > div p:nth-child(6) > span:last-child{
|
||||||
|
display: inline-block;
|
||||||
|
overflow: hidden;
|
||||||
|
height: 14px;
|
||||||
|
width: 52%;
|
||||||
|
word-break: break-word;
|
||||||
|
line-height: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .wifi-info .devices-info .table-titles {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
display: flex;
|
||||||
|
border-radius: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .wifi-info .devices-info .table-titles .th {
|
||||||
|
flex: 2 2 24%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .wifi-info .devices-info .tr .td {
|
||||||
|
flex: 2 2 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Dashboard .wifi-info hr:nth-child(4) {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32"><g stroke="#000" fill="none"><defs><symbol id="0"><path d="M6 11l0 -2 -4 0c-1,0 -1,-1 -1,-1l0 -6c0,-1 1,-1 1,-1l10 0c1,0 1,1 1,1l0 6c0,1 -1,1 -1,1l-4 0 0 2m-2 -2l2 0m-5 2l8 0"/></symbol></defs><use xlink:href="#0" x="9" y="2"/><use xlink:href="#0" x="0" y="18"/><use xlink:href="#0" x="18" y="18"/><path d="M16 14l0 3m-8 1l0 -1 16 0 0 1"/></g></svg>
|
After Width: | Height: | Size: 452 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g stroke="#5b5" fill="none"><circle cx="16" cy="16" r="15"/><ellipse cx="16" cy="16" rx="8" ry="15"/><path d="M4 25c6,-3 18,-3 24,0m-27 -9l30 0m-27 -9c6,3 18,3 24,0m-12 -6l0 30"/></g></svg>
|
After Width: | Height: | Size: 250 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g stroke="#000" fill="none"><circle cx="16" cy="16" r="15"/><ellipse cx="16" cy="16" rx="8" ry="15"/><path d="M4 25c6,-3 18,-3 24,0m-27 -9l30 0m-27 -9c6,3 18,3 24,0m-12 -6l0 30"/></g></svg>
|
After Width: | Height: | Size: 250 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path stroke="#000" fill="none" d="M6 22l-4 0c-1,0 -1,1 -1,1l0 4c0,1 1,1 1,1l28 0c1,0 1,-1 1,-1l0 -4c0,-1 -1,-1 -1,-1l-24 0 -2 -18c-0.2,-2 -2.2,-2 -2,0l2 18m22 0l2 -18c0.2,-2 2.2,-2 2,0l-2 18m-2 4l2 0m-5 0l2 0m-12 0l2 0m-5 0l2 0m-5 0l2 0m-5 0l2 0"/></svg>
|
After Width: | Height: | Size: 315 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path stroke="#000" fill="none" d="M4 15l-3 -3c8.4,-8.3 21.6,-8.3 30,0l-3 3c-6.6,-6.6 -17.4,-6.6 -24,0zm6 6l-3 -3c5,-5 13,-5 18,0l-3 3c-3.3,-3.3 -8.7,-3.3 -12,0zm6 6l-3 -3c1.6,-1.7 4.4,-1.7 6,0l-3 3z"/></svg>
|
After Width: | Height: | Size: 268 B |
@ -0,0 +1,150 @@
|
|||||||
|
'use strict';
|
||||||
|
'require baseclass';
|
||||||
|
'require rpc';
|
||||||
|
'require network';
|
||||||
|
|
||||||
|
var callLuciDHCPLeases = rpc.declare({
|
||||||
|
object: 'luci-rpc',
|
||||||
|
method: 'getDHCPLeases',
|
||||||
|
expect: { '': {} }
|
||||||
|
});
|
||||||
|
|
||||||
|
return baseclass.extend({
|
||||||
|
title: _('DHCP Devices'),
|
||||||
|
|
||||||
|
params: {},
|
||||||
|
|
||||||
|
load: function() {
|
||||||
|
return Promise.all([
|
||||||
|
callLuciDHCPLeases(),
|
||||||
|
network.getDevices()
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
|
||||||
|
renderHtml: function() {
|
||||||
|
|
||||||
|
var container_wapper = E('div', { 'class': 'router-status-lan dashboard-bg box-s1' });
|
||||||
|
var container_box = E('div', { 'class': 'lan-info devices-list' });
|
||||||
|
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' }, _('IP Address')),
|
||||||
|
E('th', { 'class': 'th' }, _('MAC')),
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
|
||||||
|
var container_deviceslist = E('table', { 'class': 'table assoclist devices-info' });
|
||||||
|
|
||||||
|
container_box.appendChild(E('div', { 'class': 'title'}, [
|
||||||
|
E('img', {
|
||||||
|
'src': L.resource('view/dashboard/icons/devices.svg'),
|
||||||
|
'width': 55,
|
||||||
|
'title': this.title,
|
||||||
|
'class': 'middle'
|
||||||
|
}),
|
||||||
|
E('h3', this.title)
|
||||||
|
]));
|
||||||
|
|
||||||
|
for(var idx in this.params.lan.devices) {
|
||||||
|
var deivce = this.params.lan.devices[idx];
|
||||||
|
|
||||||
|
container_deviceslist.appendChild(E('tr', { 'class': 'tr cbi-rowstyle-1'}, [
|
||||||
|
|
||||||
|
E('td', { 'class': 'td device-info'}, [
|
||||||
|
E('p', {}, [
|
||||||
|
E('span', { 'class': 'd-inline-block'}, [ deivce.hostname ]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
|
||||||
|
E('td', { 'class': 'td device-info'}, [
|
||||||
|
E('p', {}, [
|
||||||
|
E('span', { 'class': 'd-inline-block'}, [ deivce.ipv4 ]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
|
||||||
|
E('td', { 'class': 'td device-info'}, [
|
||||||
|
E('p', {}, [
|
||||||
|
E('span', { 'class': 'd-inline-block'}, [ deivce.macaddr ]),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
},
|
||||||
|
|
||||||
|
renderUpdateData: function(data, leases) {
|
||||||
|
|
||||||
|
for(var item in data) {
|
||||||
|
if (/lan|br-lan/ig.test(data[item].ifname) && (typeof data[item].dev == 'object' && !data[item].dev.wireless)) {
|
||||||
|
var lan_device = data[item];
|
||||||
|
var ipv4addr = lan_device.dev.ipaddrs.toString().split('/');
|
||||||
|
|
||||||
|
this.params.lan.ipv4 = ipv4addr[0] || '?';
|
||||||
|
this.params.lan.ipv6 = ipv4addr[0] || '?';
|
||||||
|
this.params.lan.macaddr = lan_device.dev.macaddr || '00:00:00:00:00:00';
|
||||||
|
this.params.lan.rx_bytes = lan_device.dev.stats.rx_bytes ? '%.2mB'.format(lan_device.dev.stats.rx_bytes) : '-';
|
||||||
|
this.params.lan.tx_bytes = lan_device.dev.stats.tx_bytes ? '%.2mB'.format(lan_device.dev.stats.tx_bytes) : '-';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var devices = [];
|
||||||
|
leases.map(function(lease) {
|
||||||
|
devices[lease.expires] = {
|
||||||
|
hostname: lease.hostname || '?',
|
||||||
|
ipv4: lease.ipaddr || '-',
|
||||||
|
macaddr: lease.macaddr || '00:00:00:00:00:00',
|
||||||
|
};
|
||||||
|
});
|
||||||
|
this.params.lan.devices = devices;
|
||||||
|
},
|
||||||
|
|
||||||
|
renderLeases: function(data) {
|
||||||
|
|
||||||
|
var leases = Array.isArray(data[0].dhcp_leases) ? data[0].dhcp_leases : [];
|
||||||
|
|
||||||
|
this.params.lan = {
|
||||||
|
ipv4: {
|
||||||
|
title: _('IPv4'),
|
||||||
|
value: '?'
|
||||||
|
},
|
||||||
|
|
||||||
|
macaddr: {
|
||||||
|
title: _('Mac'),
|
||||||
|
value: '00:00:00:00:00:00'
|
||||||
|
},
|
||||||
|
|
||||||
|
rx_bytes: {
|
||||||
|
title: _('Upload'),
|
||||||
|
value: '-'
|
||||||
|
},
|
||||||
|
|
||||||
|
tx_bytes: {
|
||||||
|
title: _('Download'),
|
||||||
|
value: '-'
|
||||||
|
},
|
||||||
|
|
||||||
|
devices: {
|
||||||
|
title: _('Devices'),
|
||||||
|
value: []
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.renderUpdateData(data[1], leases);
|
||||||
|
|
||||||
|
return this.renderHtml();
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function(data) {
|
||||||
|
if (L.hasSystemFeature('dnsmasq') || L.hasSystemFeature('odhcpd'))
|
||||||
|
return this.renderLeases(data);
|
||||||
|
|
||||||
|
return E([]);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,110 @@
|
|||||||
|
'use strict';
|
||||||
|
'require view';
|
||||||
|
'require dom';
|
||||||
|
'require poll';
|
||||||
|
'require fs';
|
||||||
|
'require network';
|
||||||
|
|
||||||
|
document.querySelector('head').appendChild(E('link', {
|
||||||
|
'rel': 'stylesheet',
|
||||||
|
'type': 'text/css',
|
||||||
|
'href': L.resource('view/dashboard/css/custom.css')
|
||||||
|
}));
|
||||||
|
|
||||||
|
function invokeIncludesLoad(includes) {
|
||||||
|
var tasks = [], has_load = false;
|
||||||
|
|
||||||
|
for (var i = 0; i < includes.length; i++) {
|
||||||
|
if (typeof(includes[i].load) == 'function') {
|
||||||
|
tasks.push(includes[i].load().catch(L.bind(function() {
|
||||||
|
this.failed = true;
|
||||||
|
}, includes[i])));
|
||||||
|
|
||||||
|
has_load = true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
tasks.push(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return has_load ? Promise.all(tasks) : Promise.resolve(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
function startPolling(includes, containers) {
|
||||||
|
var step = function() {
|
||||||
|
return network.flushCache().then(function() {
|
||||||
|
return invokeIncludesLoad(includes);
|
||||||
|
}).then(function(results) {
|
||||||
|
for (var i = 0; i < includes.length; i++) {
|
||||||
|
var content = null;
|
||||||
|
|
||||||
|
if (includes[i].failed)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (typeof(includes[i].render) == 'function')
|
||||||
|
content = includes[i].render(results ? results[i] : null);
|
||||||
|
else if (includes[i].content != null)
|
||||||
|
content = includes[i].content;
|
||||||
|
|
||||||
|
if (content != null) {
|
||||||
|
|
||||||
|
if (i > 1) {
|
||||||
|
dom.append(containers[1], content);
|
||||||
|
} else {
|
||||||
|
containers[i].parentNode.style.display = '';
|
||||||
|
containers[i].parentNode.classList.add('fade-in');
|
||||||
|
containers[i].parentNode.classList.add('Dashboard');
|
||||||
|
dom.content(containers[i], content);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var ssi = document.querySelector('div.includes');
|
||||||
|
if (ssi) {
|
||||||
|
ssi.style.display = '';
|
||||||
|
ssi.classList.add('fade-in');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return step().then(function() {
|
||||||
|
poll.add(step);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return view.extend({
|
||||||
|
load: function() {
|
||||||
|
return L.resolveDefault(fs.list('/www' + L.resource('view/dashboard/include')), []).then(function(entries) {
|
||||||
|
return Promise.all(entries.filter(function(e) {
|
||||||
|
return (e.type == 'file' && e.name.match(/\.js$/));
|
||||||
|
}).map(function(e) {
|
||||||
|
return 'view.dashboard.include.' + e.name.replace(/\.js$/, '');
|
||||||
|
}).sort().map(function(n) {
|
||||||
|
return L.require(n);
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function(includes) {
|
||||||
|
var rv = E([]), containers = [];
|
||||||
|
|
||||||
|
for (var i = 0; i < includes.length - 1; i++) {
|
||||||
|
|
||||||
|
var container = E('div', { 'class': 'section-content' });
|
||||||
|
|
||||||
|
rv.appendChild(E('div', { 'class': 'cbi-section-' + i, 'style': 'display:none' }, [
|
||||||
|
container
|
||||||
|
]));
|
||||||
|
|
||||||
|
containers.push(container);
|
||||||
|
}
|
||||||
|
|
||||||
|
return startPolling(includes, containers).then(function() {
|
||||||
|
return rv;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSaveApply: null,
|
||||||
|
handleSave: null,
|
||||||
|
handleReset: null
|
||||||
|
});
|
@ -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 ""
|
@ -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 ""
|
@ -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 ""
|
@ -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"
|
@ -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"
|
@ -0,0 +1,222 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"PO-Revision-Date: 2023-02-13 12:12+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.16-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 "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 "Download"
|
||||||
|
|
||||||
|
#: 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"
|
@ -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 "Συνδεδεμένο από"
|
@ -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"
|
@ -0,0 +1,225 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 07:13+0000\n"
|
||||||
|
"Last-Translator: Mc Giver <mcgivergim@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.12.1\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
|
||||||
|
#, 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 "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"
|
@ -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"
|
@ -0,0 +1,222 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"PO-Revision-Date: 2022-07-29 19:23+0000\n"
|
||||||
|
"Last-Translator: Christophe Blancon <christophe.blancon@gmail.com>\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.14-dev\n"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:163
|
||||||
|
msgid "Active"
|
||||||
|
msgstr "Actif"
|
||||||
|
|
||||||
|
#: 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 "Dé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 "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 "Connecté"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:13
|
||||||
|
msgid "DHCP Devices"
|
||||||
|
msgstr "Périphériques 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 "DNS v6"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/root/usr/share/luci/menu.d/luci-mod-dashboard.json:3
|
||||||
|
msgid "Dashboard"
|
||||||
|
msgstr "Tableau de bord"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:134
|
||||||
|
msgid "Devices"
|
||||||
|
msgstr "Appareils"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:193
|
||||||
|
msgid "Devices Connected"
|
||||||
|
msgstr "Appareils connectés"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||||
|
msgid "Down."
|
||||||
|
msgstr "Déconnecté."
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:129
|
||||||
|
msgid "Download"
|
||||||
|
msgstr "Télécharger"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:187
|
||||||
|
msgid "Encryption"
|
||||||
|
msgstr "Chiffrement"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:313
|
||||||
|
msgid "Firmware Version"
|
||||||
|
msgstr "Version du micrologiciel"
|
||||||
|
|
||||||
|
#: 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 "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"
|
||||||
|
|
||||||
|
#: 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"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/root/usr/share/rpcd/acl.d/luci-mod-dashboard.json:3
|
||||||
|
msgid "Grant access to the system route status"
|
||||||
|
msgstr "Autoriser l'accès à l'état de l'itinéraire du système"
|
||||||
|
|
||||||
|
#: 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 au 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 "Nom d'hôte"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:31
|
||||||
|
msgid "IP Address"
|
||||||
|
msgstr "Adresse 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 "Préfixe 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 "Version du noyau"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/10_router.js:293
|
||||||
|
msgid "Local Time"
|
||||||
|
msgstr "Heure 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 "Modèle"
|
||||||
|
|
||||||
|
#: 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é"
|
||||||
|
|
||||||
|
#: 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"
|
||||||
|
|
||||||
|
#: 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 "Système"
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/30_wifi.js:86
|
||||||
|
msgid "Up."
|
||||||
|
msgstr "Connecté."
|
||||||
|
|
||||||
|
#: modules/luci-mod-dashboard/htdocs/luci-static/resources/view/dashboard/include/20_lan.js:124
|
||||||
|
msgid "Upload"
|
||||||
|
msgstr "Téléverser"
|
||||||
|
|
||||||
|
#: 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 "Disponibilité"
|
||||||
|
|
||||||
|
#: 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"
|
||||||
|
|
||||||
|
#: 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"
|
||||||
|
|
||||||
|
#: 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"
|
@ -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 ""
|
@ -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 ""
|
@ -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"
|
@ -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"
|
@ -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"
|
@ -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 "接続時間"
|
@ -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 "예"
|
@ -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 ""
|
@ -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 ""
|
@ -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"
|
@ -0,0 +1,219 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"PO-Revision-Date: 2022-12-29 23:53+0000\n"
|
||||||
|
"Last-Translator: Youri <yrtapper@protonmail.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.15.1-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 ""
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#: 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 "Hostnaam"
|
||||||
|
|
||||||
|
#: 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 ""
|
||||||
|
|
||||||
|
#: 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 "Systeem"
|
||||||
|
|
||||||
|
#: 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 ""
|
@ -0,0 +1,223 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"PO-Revision-Date: 2021-06-26 18:17+0000\n"
|
||||||
|
"Last-Translator: Adam Stańczyk <a.stanczyk@onet.pl>\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.7.1-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 "Pobieranie"
|
||||||
|
|
||||||
|
#: 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"
|
@ -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"
|
@ -0,0 +1,222 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"PO-Revision-Date: 2021-04-01 17:27+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.6-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 "Download"
|
||||||
|
|
||||||
|
#: 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"
|
@ -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"
|
@ -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: sk\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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 ""
|
@ -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"
|
@ -0,0 +1,208 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
|
#: 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 ""
|
@ -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: vi\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\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 ""
|
@ -0,0 +1,220 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"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.12.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 "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 "是"
|
||||||
|
|
||||||
|
#~ msgid "Connected since"
|
||||||
|
#~ msgstr "连接开始时间"
|
@ -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 "連線開始時間"
|
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"admin/dashboard": {
|
||||||
|
"title": "Dashboard",
|
||||||
|
"order": 1,
|
||||||
|
"action": {
|
||||||
|
"type": "view",
|
||||||
|
"path": "dashboard/index"
|
||||||
|
},
|
||||||
|
"depends": {
|
||||||
|
"acl": [ "luci-mod-dashboard-index" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"luci-mod-dashboard-routes": {
|
||||||
|
"description": "Grant access to the system route status",
|
||||||
|
"read": {
|
||||||
|
"ubus": {
|
||||||
|
"file": [ "exec" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"luci-mod-dashboard-index": {
|
||||||
|
"description": "Grant access to main status display",
|
||||||
|
"read": {
|
||||||
|
"file": {
|
||||||
|
"/www/luci-static/resources/view/status/include": [ "list" ]
|
||||||
|
},
|
||||||
|
"ubus": {
|
||||||
|
"file": [ "list", "read" ],
|
||||||
|
"system": [ "board", "info" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"luci-mod-dashboard-index-dhcp": {
|
||||||
|
"description": "Grant access to DHCP status display",
|
||||||
|
"read": {
|
||||||
|
"ubus": {
|
||||||
|
"luci-rpc": [ "getDHCPLeases" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"luci-mod-dashboard-index-wifi": {
|
||||||
|
"description": "Grant access to wireless status display",
|
||||||
|
"read": {
|
||||||
|
"ubus": {
|
||||||
|
"iwinfo": [ "assoclist" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue