diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-09-19 09:01:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 09:01:26 +0200 |
commit | d8078cae25f8b0049167407b307d71b525c19bc6 (patch) | |
tree | dc8b0dcde2bd462f3eabfeae8d22b99fc9f6b82a | |
parent | 1c52dda3e7a4681007b53af2b2c13565c9d4c641 (diff) | |
parent | 6a03a884301f1acbc1cb1651a06b96ac92cc8596 (diff) |
Merge pull request #5979 from ldir-EDB0/nftables
luci-mod-status: nftables.js: correct icmp display
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js index 3a11f1e830..82660c1595 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js @@ -46,8 +46,8 @@ var expr_translations = { 'ip.dport': _('Destination port', 'nft ip dport'), 'ip6.saddr': _('Source IPv6', 'nft ip6 saddr'), 'ip6.daddr': _('Destination IPv6', 'nft ip6 daddr'), - 'icmp.code': _('ICMPv6 code', 'nft icmpv6 code'), - 'icmp.type': _('ICMPv6 type', 'nft icmpv6 type'), + 'icmp.code': _('ICMP code', 'nft icmp code'), + 'icmp.type': _('ICMP type', 'nft icmp type'), 'icmpv6.code': _('ICMPv6 code', 'nft icmpv6 code'), 'icmpv6.type': _('ICMPv6 type', 'nft icmpv6 type'), 'tcp.sport': _('TCP source port', 'nft tcp sport'), |