Ticket #2242: 2242.diff

File 2242.diff, 760 bytes (added by alexandrul, 11 years ago)

Patch that fixes #2242

  • deluge/plugins/notifications/notifications/gtkui.py

    diff --git a/deluge/plugins/notifications/notifications/gtkui.py b/deluge/plugins/notifications/notifications/gtkui.py
    index c803601..5c57c94 100644
    a b def _on_torrent_finished_event_got_torrent_status(self, torrent_status): 
    239239        log.debug("Handler for TorrentFinishedEvent GTKUI called. " 
    240240                  "Got Torrent Status") 
    241241        title = _("Finished Torrent") 
    242         message = _("The torrent \"%(name)s\" including %(num_files)i " 
     242        message = _("The torrent \"%(name)s\" including %(num_files)i file(s)" 
    243243                    "has finished downloading.") % torrent_status 
    244244        return title, message 
    245245