summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-10-15 15:50:24 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-10-15 15:50:24 +0000
commit27d7e8065873f220d1f00bb07c8490eb25893e80 (patch)
treefeb67e2b96b43731d1ee4eb8efcfe06a0cdd2c4e
parentdad79748fa8389a15a9b401eb4f427df79b136ce (diff)
downloaddeluge-27d7e8065873f220d1f00bb07c8490eb25893e80.tar.gz
deluge-27d7e8065873f220d1f00bb07c8490eb25893e80.tar.bz2
deluge-27d7e8065873f220d1f00bb07c8490eb25893e80.zip
clarify popup message
-rw-r--r--plugins/MoveTorrent/__init__.py2
1 files changed, 1 insertions, 1 deletions
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()