From a369cce72bc5d02562346f2fbf7ef8d03f2e5b9f Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Mon, 15 Jul 2013 15:34:14 +0200 Subject: [PATCH] add some title to windows. Fixes #7383 --- data/gui/manage_sounds_window.ui | 1 + src/dialogs.py | 1 + 2 files changed, 2 insertions(+) diff --git a/data/gui/manage_sounds_window.ui b/data/gui/manage_sounds_window.ui index 710ac6606e..b1243a1eb4 100644 --- a/data/gui/manage_sounds_window.ui +++ b/data/gui/manage_sounds_window.ui @@ -6,6 +6,7 @@ <property name="width_request">400</property> <property name="height_request">350</property> <property name="border_width">6</property> + <property name="title" translatable="yes">Manage sounds</property> <property name="type_hint">dialog</property> <signal name="delete_event" handler="on_manage_sounds_window_delete_event"/> <child> diff --git a/src/dialogs.py b/src/dialogs.py index 09c13b670e..197f347f63 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -5273,6 +5273,7 @@ class VoIPCallReceivedDialog(object): class CertificatDialog(InformationDialog): def __init__(self, parent, account, cert): + self.set_title(_('Certificate for account %s') % account) issuer = cert.get_issuer() subject = cert.get_subject() InformationDialog.__init__(self, -- GitLab