On 9/17/20 2:43 AM, Pino Toscano wrote: > Instead of using the title of the dialog and prepending the connection > label, create a new title as a single string. This way it is possible to > translate this title as single sentence. > > Signed-off-by: Pino Toscano <ptoscano@xxxxxxxxxx> > --- > virtManager/host.py | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/virtManager/host.py b/virtManager/host.py > index 59f78c7a..663b320d 100644 > --- a/virtManager/host.py > +++ b/virtManager/host.py > @@ -35,8 +35,6 @@ class vmmHost(vmmGObjectUI): > vmmGObjectUI.__init__(self, "host.ui", "vmm-host") > self.conn = conn > > - self._orig_title = self.topwin.get_title() > - > # Set default window size > w, h = self.conn.get_details_window_size() > if w <= 0: > @@ -177,7 +175,8 @@ class vmmHost(vmmGObjectUI): > conn_active = self.conn.is_active() > > self.topwin.set_title( > - self.conn.get_pretty_desc() + " " + self._orig_title) > + _("%(connection)s - Connection Details") % > + {"connection": self.conn.get_pretty_desc()}) > if not self.widget("overview-name").has_focus(): > self.widget("overview-name").set_text(self.conn.get_pretty_desc()) > > I squashed in tests/uitests/ fixes to match, plus unmark in ui/host.ui title as translatable - Cole