diff options
author | Balázs Úr <balazs@urbalazs.hu> | 2019-12-20 23:12:48 +0100 |
---|---|---|
committer | Balázs Úr <balazs@urbalazs.hu> | 2019-12-20 23:12:48 +0100 |
commit | 39196b0de98a09da2415fd90d4eed1940c82e21e (patch) | |
tree | b29d5ca5437576967514bfed1c3850cfa1e58364 /applications/luci-app-fwknopd/luasrc | |
parent | 2096d67522e6622920d8d6aa1e0009769b392ef2 (diff) |
luci-app-fwknopd: fix typos
Signed-off-by: Balázs Úr <balazs@urbalazs.hu>
Diffstat (limited to 'applications/luci-app-fwknopd/luasrc')
-rw-r--r-- | applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua b/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua index 435837444..9ae754cb9 100644 --- a/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua +++ b/applications/luci-app-fwknopd/luasrc/model/cbi/fwknopd.lua @@ -14,22 +14,22 @@ qr = s:option(DummyValue, "note0", "dummy") qr.tmp = tmp qr.template = "fwknopd-qr" qr:depends("uci_enabled", "1") -s:option(Value, "SOURCE", "SOURCE", translate("Use ANY for any source ip")) +s:option(Value, "SOURCE", "SOURCE", translate("Use ANY for any source IP")) k1 = s:option(Value, "KEY", "KEY", translate("Define the symmetric key used for decrypting an incoming SPA packet that is encrypted by the fwknop client with Rijndael.")) k1:depends("keytype", translate("Normal Key")) k2 = s:option(Value, "KEY_BASE64", "KEY_BASE64", translate("Define the symmetric key used for decrypting an incoming SPA \ packet that is encrypted by the fwknop client with Rijndael.")) -k2:depends("keytype", translate("Base 64 key")) +k2:depends("keytype", translate("Base64 key")) l1 = s:option(ListValue, "keytype", "Key type") l1:value("Normal Key", "Normal Key") -l1:value("Base 64 key", "Base 64 key") +l1:value("Base64 key", "Base64 key") k3 = s:option(Value, "HMAC_KEY", "HMAC_KEY", "The hmac key") k3:depends("hkeytype", "Normal Key") k4 = s:option(Value, "HMAC_KEY_BASE64", "HMAC_KEY_BASE64", translate("The base64 hmac key")) -k4:depends("hkeytype", "Base 64 key") +k4:depends("hkeytype", "Base64 key") l2 = s:option(ListValue, "hkeytype", "HMAC Key type") l2:value("Normal Key", "Normal Key") -l2:value("Base 64 key", "Base 64 key") +l2:value("Base64 key", "Base64 key") s:option(Value, "OPEN_PORTS", "OPEN_PORTS", translate("Define a set of ports and protocols (tcp or udp) that will be opened if a valid knock sequence is seen. \ If this entry is not set, fwknopd will attempt to honor any proto/port request specified in the SPA data \ (unless of it matches any “RESTRICT_PORTS” entries). Multiple entries are comma-separated.")) @@ -43,7 +43,7 @@ s:option(Value, "REQUIRE_SOURCE_ADDRESS", "REQUIRE_SOURCE_ADDRESS", translate("F s = m:section(TypedSection, "config", translate("fwknopd.conf config options")) s.anonymous=true -s:option(Value, "MAX_SPA_PACKET_AGE", "MAX_SPA_PACKET_AGE", translate("Maximum age in seconds that an SPA packet will be accepted. defaults to 120 seconds")) +s:option(Value, "MAX_SPA_PACKET_AGE", "MAX_SPA_PACKET_AGE", translate("Maximum age in seconds that an SPA packet will be accepted. Defaults to 120 seconds.")) s:option(Value, "PCAP_INTF", "PCAP_INTF", translate("Specify the ethernet interface on which fwknopd will sniff packets.")) s:option(Value, "ENABLE_IPT_FORWARDING", "ENABLE_IPT_FORWARDING", translate("Allow SPA clients to request access to services through an iptables firewall instead of just to it.")) s:option(Value, "ENABLE_NAT_DNS", "ENABLE_NAT_DNS", translate("Allow SPA clients to request forwarding destination by DNS name.")) |