summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorSven Roederer <freifunk@it-solutions.geroedel.de>2021-07-15 14:54:21 +0200
committerFlorian Eckert <fe@dev.tdt.de>2021-08-31 11:35:54 +0200
commit1b58decdabbbf631c89bdd56b63429b6ccc7fb8d (patch)
tree20448dd252dbe82092f288bae0ba2e71034c5d92 /modules
parent8c35a940fef6039ffb9fdc65a3b7e68527dae734 (diff)
luci-mod-network: clarify device settings "Delete" button
Use proper label text "Unconfigure" for button which "Remove related device settings". Ref: #5090, #5092 Signed-off-by: Sven Roederer <freifunk@it-solutions.geroedel.de>
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js2
1 files changed, 1 insertions, 1 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 f7b8ddcafe..720cefe059 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
@@ -1273,7 +1273,7 @@ return view.extend({
var trEl = this.super('renderRowActions', [ section_id, _('Configureā€¦') ]),
deleteBtn = trEl.querySelector('button:last-child');
- deleteBtn.firstChild.data = _('Reset');
+ deleteBtn.firstChild.data = _('Unconfigure');
deleteBtn.setAttribute('title', _('Remove related device settings from the configuration'));
deleteBtn.disabled = section_id.match(/^dev:/) ? true : null;