mirror of https://git.openwrt.org/project/luci.git
modules/admin-full: add support for the probereq iwpriv param
i18n: add required strings
This commit is contained in:
parent
ae6c1f618f
commit
4d34417ebc
|
@ -33,4 +33,5 @@ wifi_wmm = 'WMM Mode'
|
|||
wifi_xr = 'XR Support'
|
||||
wifi_ar = 'AR Support'
|
||||
wifi_nosbeacon = 'Disable HW-Beacon timer'
|
||||
wifi_noprobereq = 'Don not send probe responses'
|
||||
wifi_wpareq = 'WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP and ad-hoc mode) to be installed.'
|
||||
|
|
|
@ -37,7 +37,8 @@
|
|||
<i18n:msg xml:id="wifi_xr">XR Support</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_ar">AR Support</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_nosbeacon">Disable HW-Beacon timer</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_noprobereq">Don not send probe responses</i18n:msg>
|
||||
|
||||
<i18n:msg xml:id="wifi_wpareq">WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP and ad-hoc mode) to be installed.</i18n:msg>
|
||||
|
||||
</i18n:msgs>
|
||||
</i18n:msgs>
|
||||
|
|
|
@ -33,4 +33,5 @@ wifi_wmm = 'WMM Modus'
|
|||
wifi_xr = 'XR-Unterstützung'
|
||||
wifi_ar = 'AR-Unterstützung'
|
||||
wifi_nosbeacon = 'Deaktiviere Hardware-Beacon Zeitgeber'
|
||||
wifi_noprobereq = 'Scan-Anforderungen nicht beantworten'
|
||||
wifi_wpareq = 'Für WPA-Verschlüsselung muss wpa_supplicant (für Clientmodus) oder hostapd (für AP und Ad-hoc-Modus) installiert sein.'
|
||||
|
|
|
@ -37,7 +37,8 @@
|
|||
<i18n:msg xml:id="wifi_xr">XR-Unterstützung</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_ar">AR-Unterstützung</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_nosbeacon">Deaktiviere Hardware-Beacon Zeitgeber</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_noprobereq">Scan-Anforderungen nicht beantworten</i18n:msg>
|
||||
|
||||
<i18n:msg xml:id="wifi_wpareq">Für WPA-Verschlüsselung muss wpa_supplicant (für Clientmodus) oder hostapd (für AP und Ad-hoc-Modus) installiert sein.</i18n:msg>
|
||||
|
||||
</i18n:msgs>
|
||||
</i18n:msgs>
|
||||
|
|
|
@ -33,4 +33,5 @@ wifi_wmm = 'Modalità WMM'
|
|||
wifi_xr = 'Supporto XR'
|
||||
wifi_ar = 'Supporto AR'
|
||||
wifi_nosbeacon = 'Disabilita Timer Beacon HW'
|
||||
wifi_noprobereq = 'Disabilita Probe-Responses'
|
||||
wifi_wpareq = 'La crittografia WPA richiede l'installazione di wpa_supplicant (per la modalità client) o hostapd (per la modalità AP o ad-hoc).'
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
<i18n:msg xml:id="wifi_xr">Supporto XR</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_ar">Supporto AR</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_nosbeacon">Disabilita Timer Beacon HW</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_noprobereq">Disabilita Probe-Responses</i18n:msg>
|
||||
|
||||
<i18n:msg xml:id="wifi_wpareq">La crittografia WPA richiede l'installazione di wpa_supplicant (per la modalità client) o hostapd (per la modalità AP o ad-hoc).</i18n:msg>
|
||||
|
||||
|
|
|
@ -32,4 +32,6 @@ wifi_ff = 'Fast Frames'
|
|||
wifi_wmm = 'Modo WMM'
|
||||
wifi_xr = 'Suporte XR'
|
||||
wifi_ar = 'Suporte AR'
|
||||
wifi_nosbeacon = 'Disable HW-Beacon timer'
|
||||
wifi_noprobereq = 'Don not send probe responses'
|
||||
wifi_wpareq = 'Criptografia-WPA requer wpa_supplicant (para o modo cliente) ou hostapd (para o modo AP e ad-hoc) instalados.'
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
<i18n:msg xml:id="wifi_wmm">Modo WMM</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_xr">Suporte XR</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_ar">Suporte AR</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_nosbeacon">Disable HW-Beacon timer</i18n:msg>
|
||||
<i18n:msg xml:id="wifi_noprobereq">Don not send probe responses</i18n:msg>
|
||||
|
||||
<i18n:msg xml:id="wifi_wpareq">Criptografia-WPA requer wpa_supplicant (para o modo cliente) ou hostapd (para o modo AP e ad-hoc) instalados.</i18n:msg>
|
||||
|
||||
|
|
|
@ -234,6 +234,11 @@ if hwtype == "atheros" then
|
|||
local nos = s:option(Flag, "nosbeacon", translate("wifi_nosbeacon"))
|
||||
nos:depends({mode="sta"})
|
||||
nos.optional = true
|
||||
|
||||
local probereq = s:option(Flag, "probereq", translate("wifi_noprobereq"))
|
||||
probereq.optional = true
|
||||
probereq.enabled = "0"
|
||||
probereq.disabled = "1"
|
||||
end
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue