luci-app-uhttpd: fix translation for key option
Clarify DER support as having DER and PEM support. Issue #4248's request. Signed-off-by: Aaron Tiensivu <atiensivu@users.noreply.github.com>
This commit is contained in:
parent
de2c0451f3
commit
d662f3cff6
1 changed files with 2 additions and 2 deletions
|
@ -91,9 +91,9 @@ o = ucs:taboption("general", Flag, "rfc1918_filter", translate("Ignore private I
|
|||
o.default = o.enabled
|
||||
o.rmempty = false
|
||||
|
||||
cert_file = ucs:taboption("general", FileUpload, "cert", translate("HTTPS Certificate (DER Encoded)"))
|
||||
cert_file = ucs:taboption("general", FileUpload, "cert", translate("HTTPS Certificate (DER or PEM format)"))
|
||||
|
||||
key_file = ucs:taboption("general", FileUpload, "key", translate("HTTPS Private Key (DER Encoded)"))
|
||||
key_file = ucs:taboption("general", FileUpload, "key", translate("HTTPS Private Key (DER or PEM format)"))
|
||||
|
||||
o = ucs:taboption("general", Button, "remove_old", translate("Remove old certificate and key"),
|
||||
translate("uHTTPd will generate a new self-signed certificate using the configuration shown below."))
|
||||
|
|
Loading…
Reference in a new issue