luci-mod-admin-full: Fix display problem of wifi_add
Fixed an issue where the network name is displayed as "%q" on wlan connection destination network settings page. Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
This commit is contained in:
parent
75c9670bf8
commit
35f68fb7ea
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ if not iw then
|
|||
return
|
||||
end
|
||||
|
||||
m = SimpleForm("network", translate("Joining Network: %q", http.formvalue("join")))
|
||||
m = SimpleForm("network", translatef("Joining Network: %q", http.formvalue("join")))
|
||||
m.cancel = translate("Back to scan results")
|
||||
m.reset = false
|
||||
|
||||
|
|
Loading…
Reference in a new issue