X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=modules%2Fniu%2Fluasrc%2Fmodel%2Fcbi%2Fniu%2Fnetwork%2Fetherwan.lua;h=56350b3ff675cf42c104b40256e6d7cc68ed177c;hp=f57b7f3168f56129a22ffd9c0beb146d577df3ab;hb=952836d1ef0b2e78a6c6909a87d33644941b638c;hpb=840d8c89b582e89824982d5388af761062e8e7b3 diff --git a/modules/niu/luasrc/model/cbi/niu/network/etherwan.lua b/modules/niu/luasrc/model/cbi/niu/network/etherwan.lua index f57b7f316..56350b3ff 100644 --- a/modules/niu/luasrc/model/cbi/niu/network/etherwan.lua +++ b/modules/niu/luasrc/model/cbi/niu/network/etherwan.lua @@ -30,14 +30,14 @@ s.addremove = false s:tab("general", translate("General Settings")) s:tab("expert", translate("Expert Settings")) -p = s:taboption("general", ListValue, "proto", "Connection Type") +p = s:taboption("general", ListValue, "proto", translate("Connection Protocol")) p.override_scheme = true p.default = "dhcp" -p:value("dhcp", "Cable / Ethernet / DHCP") +p:value("dhcp", translate("Cable / Ethernet / DHCP")) if has_pppoe then p:value("pppoe", "DSL / PPPoE") end if has_pppoa then p:value("pppoa", "PPPoA") end if has_pptp then p:value("pptp", "PPTP") end -p:value("static", "Static Ethernet") +p:value("static", translate("Static Ethernet"))