modules/admin-*: Added hints for Wifi Channels
[oweals/luci.git] / modules / admin-mini / luasrc / model / cbi / mini / wifi.lua
index c293175b6ff2cb8f33fc91e93a04895630bc14e7..95407be85ffb0443b5df402af0c8f4a7531ea792 100644 (file)
@@ -136,8 +136,10 @@ mode:value("11a", "802.11a")
 mode:value("11bg", "802.11b+g")
 mode.rmempty = true
 
-s:option(Value, "channel", translate("a_w_channel"))
-
+ch = s:option(Value, "channel", translate("a_w_channel"))
+for i=1, 14 do
+       ch:value(i, i .. " (2.4 GHz)")
+end
 
 
 s = m:section(TypedSection, "wifi-iface", translate("m_n_local"))