diff --git a/virtManager/details/details.py b/virtManager/details/details.py index 6e597694..791a5ae1 100644 --- a/virtManager/details/details.py +++ b/virtManager/details/details.py @@ -188,9 +188,9 @@ def _label_for_device(dev): if devtype == "interface": if dev.macaddr: - return "NIC %s" % dev.macaddr[-9:] + return _("NIC %(mac)s") % {"mac": dev.macaddr[-9:]} else: - return "NIC" + return _("NIC") if devtype == "input": if dev.type == "tablet":