Merge pull request #4278 from atiensivu/luci-app-uhttpd-fix-translation-for-key-option

luci-app-uhttpd: fix translation for key option
This commit is contained in:
Florian Eckert 2020-07-21 08:10:13 +02:00 committed by GitHub
commit b8ff46c6d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,9 +91,9 @@ o = ucs:taboption("general", Flag, "rfc1918_filter", translate("Ignore private I
o.default = o.enabled o.default = o.enabled
o.rmempty = false 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"), 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.")) translate("uHTTPd will generate a new self-signed certificate using the configuration shown below."))