diff options
author | Van Waholtz <vanwaholtz@gmail.com> | 2020-12-16 02:31:45 -0800 |
---|---|---|
committer | Van Waholtz <vanwaholtz@gmail.com> | 2020-12-16 02:40:30 -0800 |
commit | fb302e440467273ba34dfc4626fab2ff1c994bd0 (patch) | |
tree | 7f29b9725d4a45f3cdce4da21c6bad9900404c52 /applications/luci-app-wol/htdocs/luci-static/resources | |
parent | a650949e2282c4b6583f5416b83ae6a3c6c3fb63 (diff) |
luci-app-wol: fix some untranslated strings
Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
Diffstat (limited to 'applications/luci-app-wol/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js b/applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js index f3b363d60a..3e0c70a924 100644 --- a/applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js +++ b/applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js @@ -71,7 +71,7 @@ return view.extend({ }); if (has_ewk) { - o = s.option(form.Flag, 'broadcast', ('Send to broadcast address')); + o = s.option(form.Flag, 'broadcast', _('Send to broadcast address')); if (has_wol) o.depends('executable', '/usr/bin/etherwake'); @@ -104,7 +104,7 @@ return view.extend({ } ui.showModal(_('Waking host'), [ - E('p', { 'class': 'spinning' }, [ 'Starting WoL utility…' ]) + E('p', { 'class': 'spinning' }, [ _('Starting WoL utility…') ]) ]); return fs.exec(bin, args).then(function(res) { |