X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=modules%2Fadmin-full%2Fluasrc%2Fview%2Fadmin_network%2Fwifi_join.htm;h=2455b7d6f08ba482d05a6a3dad758a7e880acb0b;hp=03407b839d69a10c7a23231dc05eb9b595a3c880;hb=6b128c028146d6a7a0ed630f4be07c1d67cf8fc1;hpb=d7f865b6b2d6fa791bcf8508773fe69d91584901 diff --git a/modules/admin-full/luasrc/view/admin_network/wifi_join.htm b/modules/admin-full/luasrc/view/admin_network/wifi_join.htm index 03407b839d..2455b7d6f0 100644 --- a/modules/admin-full/luasrc/view/admin_network/wifi_join.htm +++ b/modules/admin-full/luasrc/view/admin_network/wifi_join.htm @@ -50,18 +50,20 @@ $Id$ end function format_wifi_encryption(info) - if info.wep == true and not info.wpa_version then + if info.wep == true then return "WEP" - elseif info.wpa then - return "%s - %s" % { + elseif info.wpa > 0 then + return translatef("%s - %s", table.concat(info.pair_ciphers, ", "), table.concat(info.group_ciphers, ", "), - (info.wpa == 3) and "mixed WPA/WPA2" + (info.wpa == 3) and translate("mixed WPA/WPA2") or (info.wpa == 2 and "WPA2" or "WPA"), table.concat(info.auth_suites, ", ") - } + ) + elseif info.enabled then + return "%s" % translate("unknown") else - return "None" + return "%s" % translate("open") end end @@ -113,7 +115,7 @@ $Id$ Channel: <%=net.channel%> | Mode: <%=net.mode%> | BSSID: <%=net.bssid%> | - Encryption: <%=net.encryption.description or translate("Open")%> + Encryption: <%=format_wifi_encryption(net.encryption)%>