diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2023-08-07 23:44:06 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2023-08-08 00:44:29 +0300 |
commit | bebad8f7f8cea7c853598c87cccfbbeb0beecb97 (patch) | |
tree | 024c50ba7177e0e02c9f6be4da5eb35ad7e5b942 /applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js | |
parent | 32c3fd4922db7c16fc2ef4040ae49ba6a7db57cb (diff) |
luci-app-acme: Account email explanation
Add rationale how the email is used.
The translation key is separate to keep an existing translation.
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js')
-rw-r--r-- | applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index a86fd4a328..a7553df9a7 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -25,7 +25,9 @@ return view.extend({ s.anonymous = true; o = s.option(form.Value, "account_email", _("Account email"), - _("Email address to associate with account key.")) + _('Email address to associate with account key.') + '<br/>' + + _('If a certificate wasn\'t renewed in time then you\'ll receive a notice at 20 days before expiry.') + ) o.rmempty = false; o.datatype = "minlength(1)"; |