From 8ba5e78610168d563be655423c3b224ddafd7d5f Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 4 Feb 2013 13:26:07 +0000 Subject: [PATCH] Fix #2242 : Notifications: Missing word in torrent finished message --- deluge/plugins/notifications/notifications/gtkui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/plugins/notifications/notifications/gtkui.py b/deluge/plugins/notifications/notifications/gtkui.py index c80360152..17f43c62d 100644 --- a/deluge/plugins/notifications/notifications/gtkui.py +++ b/deluge/plugins/notifications/notifications/gtkui.py @@ -239,7 +239,7 @@ class GtkUiNotifications(CustomNotifications): log.debug("Handler for TorrentFinishedEvent GTKUI called. " "Got Torrent Status") 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 return title, message