* Core translation
This commit is contained in:
parent
cd0fb5e44e
commit
37caa67aaa
5 changed files with 25 additions and 12 deletions
|
@ -31,6 +31,18 @@ a_st_i_status1 = [[Here you can find information about the current system status
|
||||||
usage or network interface data.]]
|
usage or network interface data.]]
|
||||||
a_st_i_status2 = [[Also kernel or service logfiles can be viewed here to get an overview over their current state.]]
|
a_st_i_status2 = [[Also kernel or service logfiles can be viewed here to get an overview over their current state.]]
|
||||||
|
|
||||||
|
iwscan = "WLAN-Scan"
|
||||||
|
iwscan1 = "Wifi networks in your local environment"
|
||||||
|
iwscan_encr = "Encr."
|
||||||
|
iwscan_link = "Link"
|
||||||
|
iwscan_signal = "Signal"
|
||||||
|
iwscan_noise = "Noise"
|
||||||
|
|
||||||
|
routes = "Routes"
|
||||||
|
routes_netmask = "Netmask"
|
||||||
|
routes_gateway = "Gateway"
|
||||||
|
routes_metric = "Metric"
|
||||||
|
|
||||||
a_s_packages = "Software"
|
a_s_packages = "Software"
|
||||||
a_s_changepw = "Admin Password"
|
a_s_changepw = "Admin Password"
|
||||||
a_s_p_ipkg = "IPKG-Configuration"
|
a_s_p_ipkg = "IPKG-Configuration"
|
||||||
|
|
|
@ -4,6 +4,7 @@ administration = "Administration"
|
||||||
apply = "Apply"
|
apply = "Apply"
|
||||||
|
|
||||||
changes = "Changes"
|
changes = "Changes"
|
||||||
|
channel = "Channel"
|
||||||
code = "Code"
|
code = "Code"
|
||||||
config = "Configuration"
|
config = "Configuration"
|
||||||
configfile = "Configuration file"
|
configfile = "Configuration file"
|
||||||
|
@ -30,6 +31,7 @@ hostname = "Hostname"
|
||||||
|
|
||||||
install = "Install"
|
install = "Install"
|
||||||
installed = "installed"
|
installed = "installed"
|
||||||
|
interface = "Interface"
|
||||||
|
|
||||||
key = "Key"
|
key = "Key"
|
||||||
|
|
||||||
|
@ -62,6 +64,7 @@ statistics = "Statistics"
|
||||||
syslog = "System Log"
|
syslog = "System Log"
|
||||||
system = "System"
|
system = "System"
|
||||||
|
|
||||||
|
target = "Target"
|
||||||
type = "Type"
|
type = "Type"
|
||||||
|
|
||||||
unknownerror = "Unknown Error"
|
unknownerror = "Unknown Error"
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
uci_applied = "The following changes were applied"
|
|
||||||
uci_reverted = "The following changes were reverted"
|
|
|
@ -6,14 +6,14 @@
|
||||||
<table cellspacing="0" cellpadding="6" class="smalltext">
|
<table cellspacing="0" cellpadding="6" class="smalltext">
|
||||||
<tr>
|
<tr>
|
||||||
<th><%:interface Schnittstelle%></th>
|
<th><%:interface Schnittstelle%></th>
|
||||||
<th><%:essid ESSID%></th>
|
<th>ESSID</th>
|
||||||
<th><%:bssid BSSID%></th>
|
<th>BSSID</th>
|
||||||
<th><%:mode Modus%></th>
|
<th><%:mode Modus%></th>
|
||||||
<th><%:channel Kanal%></th>
|
<th><%:channel Kanal%></th>
|
||||||
<th><%:encr Vers.%></th>
|
<th><%:iwscan_encr Vers.%></th>
|
||||||
<th><%:link Verb.%></th>
|
<th><%:iwscan_link Verb.%></th>
|
||||||
<th><%:signal Signal%></th>
|
<th><%:iwscan_signal Signal%></th>
|
||||||
<th><%:noise Rausch%></th>
|
<th><%:iwscan_noise Rausch%></th>
|
||||||
</tr>
|
</tr>
|
||||||
<%for iface, cells in pairs(luci.sys.wifi.iwscan()) do
|
<%for iface, cells in pairs(luci.sys.wifi.iwscan()) do
|
||||||
for i, cell in ipairs(cells) do
|
for i, cell in ipairs(cells) do
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
<table cellspacing="0" cellpadding="6" class="smalltext">
|
<table cellspacing="0" cellpadding="6" class="smalltext">
|
||||||
<tr>
|
<tr>
|
||||||
<th><%:target Ziel%></th>
|
<th><%:target Ziel%></th>
|
||||||
<th><%:netmask Netzmaske%></th>
|
<th><%:routes_netmask Netzmaske%></th>
|
||||||
<th><%:gateway Gateway%></th>
|
<th><%:routes_gateway Gateway%></th>
|
||||||
<th><%:metric Metrik%></th>
|
<th><%:routes_metric Metrik%></th>
|
||||||
<th><%:iface Schnittstelle%></th>
|
<th><%:interface Schnittstelle%></th>
|
||||||
</tr>
|
</tr>
|
||||||
<%
|
<%
|
||||||
local routes = luci.sys.net.routes()
|
local routes = luci.sys.net.routes()
|
||||||
|
|
Loading…
Reference in a new issue