i18n: avoid string puzzle

Create the complete sentence as single message, instead of joining an
existing message with few words more.

Reviewed-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Pino Toscano <ptoscano@redhat.com>
This commit is contained in:
Pino Toscano 2020-07-14 09:41:48 +02:00 committed by Cole Robinson
parent 523497085a
commit ed836c7138

View File

@ -829,7 +829,9 @@ class vmmCloneVM(vmmGObjectUI):
self.clone_design.clone_name)
text = title
if self.clone_design.clone_disks:
text = title + _(" and selected storage (this may take a while)")
text = (_("Creating virtual machine clone '%s' and selected "
"storage (this may take a while)") %
self.clone_design.clone_name)
progWin = vmmAsyncJob(self._async_clone, [],
self._finish_cb, [self.conn],