* luci/modules: fix default translation of no-encryption-option in both admin-full and admin-fixed

This commit is contained in:
Jo-Philipp Wich 2008-09-03 22:42:20 +00:00
parent 8a1b678504
commit ccd792c4d1
2 changed files with 2 additions and 2 deletions

View file

@ -232,7 +232,7 @@ end
------------------- WiFI-Encryption ------------------- ------------------- WiFI-Encryption -------------------
encr = s:option(ListValue, "encryption", translate("encryption")) encr = s:option(ListValue, "encryption", translate("encryption"))
encr:value("none", "keine") encr:value("none", "No Encryption")
encr:value("wep", "WEP") encr:value("wep", "WEP")
encr:value("psk", "WPA-PSK") encr:value("psk", "WPA-PSK")
encr:value("psk2", "WPA2-PSK") encr:value("psk2", "WPA2-PSK")

View file

@ -206,7 +206,7 @@ function mode.write(self, section, value)
end end
encr = s:option(ListValue, "encryption", translate("encryption")) encr = s:option(ListValue, "encryption", translate("encryption"))
encr:value("none", "keine") encr:value("none", "No Encryption")
encr:value("wep", "WEP") encr:value("wep", "WEP")
encr:value("psk", "WPA-PSK") encr:value("psk", "WPA-PSK")
encr:value("wpa", "WPA-Radius", {mode="ap"}) encr:value("wpa", "WPA-Radius", {mode="ap"})