diff options
author | Hsing-Wang Liao <kuoruan@gmail.com> | 2017-01-02 12:53:47 +0800 |
---|---|---|
committer | Hsing-Wang Liao <kuoruan@gmail.com> | 2017-01-02 12:53:58 +0800 |
commit | 2f42138ef4452a8a1a184f608c52351d01e2e078 (patch) | |
tree | fc9a09145118b95bd616bfb5a2d562353d32f338 /applications/luci-app-wifischedule/luasrc/model/cbi | |
parent | df0d765deba0178f98940d4e8f1c2d76780bf1c3 (diff) |
luci-app-wifischedule: Add more translation
Signed-off-by: Hsing-Wang Liao <kuoruan@gmail.com>
Diffstat (limited to 'applications/luci-app-wifischedule/luasrc/model/cbi')
-rw-r--r-- | applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua b/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua index 2cca476b4f..7c7f1b50e5 100644 --- a/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua +++ b/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua @@ -46,7 +46,7 @@ end -- END Map -- BEGIN Global Section -global_section = m:section(TypedSection, "global", "Global Settings") +global_section = m:section(TypedSection, "global", translate("Global Settings")) global_section.optional = false global_section.rmempty = false global_section.anonymous = true @@ -142,7 +142,7 @@ end -- BEGIN Section -d = m:section(TypedSection, "entry", "Schedule events") +d = m:section(TypedSection, "entry", translate("Schedule events")) d.addremove = true --d.anonymous = true -- END Section @@ -157,13 +157,13 @@ c.optional=false; c.rmempty = false; dow = d:option(MultiValue, "daysofweek", translate("Day(s) of Week")) dow.optional = false dow.rmempty = false -dow:value("Monday") -dow:value("Tuesday") -dow:value("Wednesday") -dow:value("Thursday") -dow:value("Friday") -dow:value("Saturday") -dow:value("Sunday") +dow:value("Monday", translate("Monday")) +dow:value("Tuesday", translate("Tuesday")) +dow:value("Wednesday", translate("Wednesday")) +dow:value("Thursday", translate("Thursday")) +dow:value("Friday", translate("Friday")) +dow:value("Saturday", translate("Saturday")) +dow:value("Sunday", translate("Sunday")) -- END Day(s) of Weel -- BEGIN Start Wifi Dropdown |