[GTKUI] Improve About dialog copyright format for translators

This commit is contained in:
Calum Lind 2015-08-09 13:39:20 +01:00
parent 4ba98c997a
commit 576df1f6e3
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ class AboutDialog:
version = 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)