summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-network
diff options
context:
space:
mode:
authorPaul Dee <systemcrash@users.noreply.github.com>2021-10-07 01:00:24 +0200
committerPaul Spooren <mail@aparcar.org>2021-10-08 14:12:11 -1000
commitc0299e2c3d09c48b515447b2c6fefd00ffd2950b (patch)
treef49df28cf9267aadfccd4fe19150270c6a546119 /modules/luci-mod-network
parent28b9663660fcb6b5414105171bf4d6a954070b76 (diff)
luci-mod-network: spelling / grammar
"Setup" is a noun, the thing. "Set up" is a verbal idiom, the action. One cannot setup a DHCP server, just as one cannot fuckup a test, or ripup some paper. One can, however, set a DHCP server up, and one can fuck a test up, and rip some paper up. Signed-off-by: Paul Dee <systemcrash@users.noreply.github.com>
Diffstat (limited to 'modules/luci-mod-network')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
index 6aad8d1083..5cc7186124 100644
--- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
+++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
@@ -643,7 +643,7 @@ return view.extend({
E('p', _('No DHCP Server configured for this interface') + ' &#160; '),
E('button', {
'class': 'cbi-button cbi-button-add',
- 'title': _('Setup DHCP Server'),
+ 'title': _('Set up DHCP Server'),
'click': ui.createHandlerFn(this, function(section_id, ev) {
this.map.save(function() {
uci.add('dhcp', 'dhcp', section_id);
@@ -659,7 +659,7 @@ return view.extend({
}
});
}, ifc.getName())
- }, _('Setup DHCP Server'))
+ }, _('Set up DHCP Server'))
]);
};