diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-12-16 12:01:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 12:01:20 +0100 |
commit | 73f0f1b3538c23e07c8a46be1cd740343f4f0c81 (patch) | |
tree | bbf748a79868603af2be2c385b203afe5b6217cb /applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js | |
parent | d18537ad906e4d9863a221132c19881010b57d25 (diff) | |
parent | fb302e440467273ba34dfc4626fab2ff1c994bd0 (diff) |
Merge pull request #4662 from brvphoenix/wol
luci-app-wol: fix some untranslated strings
Diffstat (limited to 'applications/luci-app-wol/htdocs/luci-static/resources/view/wol.js')
-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) { |