summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-system/htdocs
diff options
context:
space:
mode:
authorJosh Correia <joshmcorreia@gmail.com>2024-06-04 00:14:27 -0700
committerPaul Donald <newtwen+github@gmail.com>2024-06-04 14:36:19 +0200
commit9068e947b0cc8dfa6e5092c7e9346df0e6ff9850 (patch)
treed67f8ec5cc90c2ab65282c739a5215c9d3f6f581 /modules/luci-mod-system/htdocs
parenta777a96e2bca87a12520c302675474ff66fdaf41 (diff)
luci-mod-system: Improve SSH-Keys page grammar, update po/pot files
Signed-off-by: Josh Correia <joshmcorreia@gmail.com>
Diffstat (limited to 'modules/luci-mod-system/htdocs')
-rw-r--r--modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js
index a1748ad990..ce983c3228 100644
--- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js
+++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js
@@ -287,7 +287,7 @@ return view.extend({
return E('div', {}, [
E('h2', _('SSH-Keys')),
- E('div', { 'class': 'cbi-section-descr' }, _('Public keys allow for the passwordless SSH logins with a higher security compared to the use of plain passwords. In order to upload a new key to the device, paste an OpenSSH compatible public key line or drag a <code>.pub</code> file into the input field.')),
+ E('div', { 'class': 'cbi-section-descr' }, _('Public keys allow for passwordless SSH logins with higher security than plain passwords. In order to upload a new key to the device, paste an OpenSSH-compatible public key or drag a <code>.pub</code> file into the input field.')),
E('div', { 'class': 'cbi-section-node' }, list)
]);
},