From 16faa26124b282676de5b90efb98f9d42220c36e Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 9 Aug 2015 13:39:20 +0100 Subject: [PATCH] [GTKUI] Improve About dialog copyright format for translators --- deluge/ui/gtkui/aboutdialog.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/aboutdialog.py b/deluge/ui/gtkui/aboutdialog.py index 488bf7d55..09cecdd68 100644 --- a/deluge/ui/gtkui/aboutdialog.py +++ b/deluge/ui/gtkui/aboutdialog.py @@ -56,7 +56,8 @@ class AboutDialog: version = deluge.common.get_version() - self.about.set_copyright(_("Copyright %s-%s Deluge Team") % (2007, 2014)) + self.about.set_copyright( + _("Copyright %(year_start)s-%(year_end)s Deluge Team") % {"year_start": 2007, "year_end": 2015}) self.about.set_comments( _("A peer-to-peer file sharing program\nutilizing the BitTorrent protocol.") + "\n\n" + _("Client:") + " %s\n" % version)