luci-mod-status: Host -> Hostname in DHCPv6 table

The DHCPv4 table already calls it "Hostname", and so do the DHCPv[46]
tables in luci-mod-network, so rename this one as well for consistency.
Note that "Hostname" is already used elsewhere, so this shouldn't cause
translation issues (I think).

Signed-off-by: David Härdeman <david@hardeman.nu>
This commit is contained in:
David Härdeman
2025-12-09 08:58:23 +01:00
committed by Paul Donald
parent dd1ede16a0
commit 110aec09d0

View File

@@ -166,7 +166,7 @@ return baseclass.extend({
const table6 = E('table', { 'id': 'status_leases6', 'class': 'table leases6' }, [
E('tr', { 'class': 'tr table-titles' }, [
L.hasSystemFeature('odhcpd', 'dhcpv6') ? E('th', { 'class': 'th' }, _('Interface')) : E([]),
E('th', { 'class': 'th' }, _('Host')),
E('th', { 'class': 'th' }, _('Hostname')),
E('th', { 'class': 'th' }, _('IPv6 addresses')),
E('th', { 'class': 'th' }, _('DUID')),
E('th', { 'class': 'th' }, _('IAID')),