Fix #2242 : Notifications: Missing word in torrent finished message

This commit is contained in:
Calum Lind 2013-02-04 13:26:07 +00:00
parent 1bfaf74ff9
commit 8ba5e78610
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ class GtkUiNotifications(CustomNotifications):
log.debug("Handler for TorrentFinishedEvent GTKUI called. " log.debug("Handler for TorrentFinishedEvent GTKUI called. "
"Got Torrent Status") "Got Torrent Status")
title = _("Finished Torrent") title = _("Finished Torrent")
message = _("The torrent \"%(name)s\" including %(num_files)i " message = _("The torrent \"%(name)s\" including %(num_files)i file(s) "
"has finished downloading.") % torrent_status "has finished downloading.") % torrent_status
return title, message return title, message