diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-06-25 21:38:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-25 21:38:08 +0200 |
commit | 1fb68aad35a4b6e5e6c0cee65198439633b0e9fa (patch) | |
tree | a41c66c529d6332952b52b1429e857b629038620 /applications/luci-app-opkg/htdocs/luci-static | |
parent | 86fd703bae2089cfd0dd7e06c1dd20c4b956767a (diff) | |
parent | 8767eb830beed06e482ffb445790ec1850123990 (diff) |
Merge pull request #2788 from dibdot/opkg
luci-app-opkg: change remove button caption (first level)
Diffstat (limited to 'applications/luci-app-opkg/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js index 2c0c460d15..20fbf430be 100644 --- a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js +++ b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js @@ -162,7 +162,7 @@ function display(pattern) 'class': 'btn cbi-button-negative', 'data-package': name, 'click': handleRemove - }, _('Remove')); + }, _('Remove…')); } else { var inst = packages.installed.pkgs[name]; @@ -737,7 +737,7 @@ function handleRemove(ev) 'data-package': name, 'class': 'btn cbi-button-negative', 'click': handleOpkg - }, _('Remove…')) + }, _('Remove')) ]) ]) ]); |