From 2a6300313376afd930b9a1451794716b8d9eaef8 Mon Sep 17 00:00:00 2001 From: Christian Ehrhardt Date: Thu, 5 Dec 2019 14:12:05 +0100 Subject: [PATCH] virtManager: disambiguize LXC LXC can be many things and in particular when seeing just "LXC" in the virt-manager UI one might think of either - Libvirt-LXC => https://libvirt.org/drvlxc.html - Linuxcontainers LXC => https://linuxcontainers.org Clarify that this is specifically Libvirt-LXC Reviewed-by: Cole Robinson Signed-off-by: Christian Ehrhardt --- virtManager/createconn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtManager/createconn.py b/virtManager/createconn.py index d30ee0919..bfebe7378 100644 --- a/virtManager/createconn.py +++ b/virtManager/createconn.py @@ -116,7 +116,7 @@ class vmmCreateConn(vmmGObjectUI): _add_hv_row(HV_QEMU, "qemu", "QEMU/KVM") _add_hv_row(HV_QEMU_SESSION, "qemu", "QEMU/KVM " + _("user session")) _add_hv_row(HV_XEN, "xen", "Xen") - _add_hv_row(HV_LXC, "lxc", "LXC (" + _("Linux Containers") + ")") + _add_hv_row(HV_LXC, "lxc", "Libvirt-LXC") _add_hv_row(HV_BHYVE, "bhyve", "Bhyve") _add_hv_row(HV_VZ, "vz", "Virtuozzo") _add_hv_row(-1, None, "")