diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-09-24 19:26:24 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-09-24 19:26:33 +0200 |
commit | e091859116c21f8a107e60d53acb664543bd8928 (patch) | |
tree | a679cbb6869aecc59b4a3eed62ab8c36340d5834 /modules | |
parent | 5c8a3c5b7993f52ecaadd53a3516f86231a1cff3 (diff) |
luci-mod-system: system.js: use more concise label for use_dhcp
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js index 415a6a175..18af222d2 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js @@ -261,7 +261,7 @@ return L.view.extend({ o.ucisection = 'ntp'; o.depends('enabled', '1'); - o = s.taboption('timesync', form.Flag, 'use_dhcp', _('Use NTP servers offered by DHCP')); + o = s.taboption('timesync', form.Flag, 'use_dhcp', _('Use DHCP advertised servers')); o.ucisection = 'ntp'; o.default = o.enabled; o.depends('enabled', '1'); |