mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
Fix a couple transalation issues
This commit is contained in:
parent
cadf5ba770
commit
b96fa5706c
@ -801,8 +801,9 @@ def check_domain(guest, dom, conscb, wait_for_install, wait_time, start_time):
|
|||||||
timestr = (not wait_forever and
|
timestr = (not wait_forever and
|
||||||
_("%d minutes ") % (int(wait_time) / 60) or "")
|
_("%d minutes ") % (int(wait_time) / 60) or "")
|
||||||
print_stdout(
|
print_stdout(
|
||||||
_("Domain installation still in progress. Waiting %s"
|
_("Domain installation still in progress. Waiting "
|
||||||
"for installation to complete.") % timestr)
|
"%(time_string)s for installation to complete.") %
|
||||||
|
{"time_string": timestr})
|
||||||
|
|
||||||
# Wait loop
|
# Wait loop
|
||||||
while True:
|
while True:
|
||||||
|
@ -598,7 +598,7 @@ class vmmHost(vmmGObjectUI):
|
|||||||
routeVia = str(route[0]) + ", gateway=" + str(route[1])
|
routeVia = str(route[0]) + ", gateway=" + str(route[1])
|
||||||
self.widget("net-ip4-route-label").show()
|
self.widget("net-ip4-route-label").show()
|
||||||
else:
|
else:
|
||||||
routeVia = _("")
|
routeVia = ""
|
||||||
self.widget("net-ip4-route-label").hide()
|
self.widget("net-ip4-route-label").hide()
|
||||||
self.widget("net-ip4-route-via").set_text(routeVia)
|
self.widget("net-ip4-route-via").set_text(routeVia)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user