From 27d7e8065873f220d1f00bb07c8490eb25893e80 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 15 Oct 2007 15:50:24 +0000 Subject: [PATCH] clarify popup message --- plugins/MoveTorrent/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MoveTorrent/__init__.py b/plugins/MoveTorrent/__init__.py index 315d5cc20..701a06840 100644 --- a/plugins/MoveTorrent/__init__.py +++ b/plugins/MoveTorrent/__init__.py @@ -126,7 +126,7 @@ class movetorrentMenu: def handle_event(self, event): if event['event_type'] is self.core.constants['EVENT_STORAGE_MOVED']: if event['message'] == self.core.unique_IDs[event['unique_ID']].save_dir: - self.dialogs.show_popup_warning(self.window, _("You cannot move torrent to a different partition. Please check your preferences. Or perhaps you are trying to move torrent's files to the same directory they are already stored?")) + self.dialogs.show_popup_warning(self.window, _("You cannot move torrent to a different partition. Please check your preferences. Also, you cannot move a torrent's files to the same directory that they are already stored or move a torrent's files before any of its files have actually been created.")) self.core.unique_IDs[event['unique_ID']].save_dir = event['message'] self.core.pickle_state()