From 1f12bab923319a1b27cc4b3a04cfc8ff7f3d7896 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 --- .../plugins/Notifications/deluge/plugins/notifications/gtkui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/plugins/Notifications/deluge/plugins/notifications/gtkui.py b/deluge/plugins/Notifications/deluge/plugins/notifications/gtkui.py index b3e5acbb3..44558fda4 100644 --- a/deluge/plugins/Notifications/deluge/plugins/notifications/gtkui.py +++ b/deluge/plugins/Notifications/deluge/plugins/notifications/gtkui.py @@ -242,7 +242,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