1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 13:11:28 +00:00

Un-localize things like 'IPv4', 'PDF', etc.

This commit is contained in:
dmiller
2023-01-31 23:06:30 +00:00
parent 99b121d0a2
commit 7162b00788
7 changed files with 15 additions and 15 deletions

View File

@@ -162,13 +162,13 @@ class HostDetails(HIGVBox):
self.info_lastboot_label = HIGEntryLabel(na)
# Addresses expander
self.ipv4_label = HIGEntryLabel(_('IPv4:'))
self.ipv4_label = HIGEntryLabel('IPv4:')
self.info_ipv4_label = HIGEntryLabel(na)
self.ipv6_label = HIGEntryLabel(_('IPv6:'))
self.ipv6_label = HIGEntryLabel('IPv6:')
self.info_ipv6_label = HIGEntryLabel(na)
self.mac_label = HIGEntryLabel(_('MAC:'))
self.mac_label = HIGEntryLabel('MAC:')
self.info_mac_label = HIGEntryLabel(na)
self.vendor_label = HIGEntryLabel(_('Vendor:'))