Fix a couple transalation issues

This commit is contained in:
Cole Robinson 2013-09-20 12:10:34 -04:00
parent cadf5ba770
commit b96fa5706c
2 changed files with 4 additions and 3 deletions

View File

@ -801,8 +801,9 @@ def check_domain(guest, dom, conscb, wait_for_install, wait_time, start_time):
timestr = (not wait_forever and
_("%d minutes ") % (int(wait_time) / 60) or "")
print_stdout(
_("Domain installation still in progress. Waiting %s"
"for installation to complete.") % timestr)
_("Domain installation still in progress. Waiting "
"%(time_string)s for installation to complete.") %
{"time_string": timestr})
# Wait loop
while True:

View File

@ -598,7 +598,7 @@ class vmmHost(vmmGObjectUI):
routeVia = str(route[0]) + ", gateway=" + str(route[1])
self.widget("net-ip4-route-label").show()
else:
routeVia = _("")
routeVia = ""
self.widget("net-ip4-route-label").hide()
self.widget("net-ip4-route-via").set_text(routeVia)