diff options
author | Sven Roederer <devel-sven@geroedel.de> | 2021-05-01 01:12:02 +0200 |
---|---|---|
committer | Sven Roederer <devel-sven@geroedel.de> | 2021-05-04 00:09:11 +0200 |
commit | ddf6357cdae574b5e88213fa6af0a96f695e4283 (patch) | |
tree | a617632bcbf6ed4aac4e41e8c5c235dcb185c756 /modules/luci-base/htdocs | |
parent | 9184721fab65934fe016c132a8f11a2308742f92 (diff) |
luci-base: change button-text from Dismiss to Close in UCI changes overview
Change the left button of the UCI Apply-changes overview to the more correct function close.
This also avoids confusion between Dismiss and Revert, which translate to the same in german.
Signed-off-by: Sven Roederer <devel-sven@geroedel.de>
Diffstat (limited to 'modules/luci-base/htdocs')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index 3a991be9ac..5a0e6d297b 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -4063,7 +4063,7 @@ var UI = baseclass.extend(/** @lends LuCI.ui.prototype */ { E('button', { 'class': 'btn', 'click': UI.prototype.hideModal - }, [ _('Dismiss') ]), ' ', + }, [ _('Close') ]), ' ', E('button', { 'class': 'cbi-button cbi-button-positive important', 'click': L.bind(this.apply, this, true) |