Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
1715173329 committed Dec 7, 2019
1 parent 74abaa8 commit 1442546
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions luasrc/model/cbi/unblockneteasemusic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ hijack.default = "dont_hijack"
hijack.rmempty = false

auto_update = s:option(Flag, "auto_update", translate("启用自动更新"))
auto_update.description = translate("启用后会在每天设定的时间自动检测最新版本并更新")
auto_update.description = translate("启用后,每天将定时自动检查最新版本并更新")
auto_update.default = 0
auto_update.rmempty = false

Expand All @@ -63,7 +63,8 @@ for update_time_hour = 0,23 do
update_time:value(update_time_hour, update_time_hour..":00")
end
update_time.default = "3"
update_time.depends("auto_update", 1)
update_time.description = translate("设定每天自动检查更新时间")
update_time:depends("auto_update", 1)

advanced_mode = s:option(Flag, "advanced_mode", translate("启用进阶设置"))
advanced_mode.description = translate("仅推荐高级玩家使用")
Expand Down

0 comments on commit 1442546

Please sign in to comment.