Create the complete sentence as single message, instead of joining an existing message with few words more. Signed-off-by: Pino Toscano <ptoscano@xxxxxxxxxx> --- virtManager/clone.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/virtManager/clone.py b/virtManager/clone.py index 72da93bf..ecd56b5d 100644 --- a/virtManager/clone.py +++ b/virtManager/clone.py @@ -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], -- 2.26.2