From efcbab893fc5aedfd79372bcf51fb1257d0d9917 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 30 Dec 2010 07:42:14 +0000 Subject: [PATCH] (trunk, libT) #2955 "jit verify" -- shorten the error message for torrents whose files disappeared. --- libtransmission/torrent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 0592bd526..80c05843a 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -765,7 +765,7 @@ setLocalErrorIfFilesDisappeared( tr_torrent * tor ) if( disappeared ) { tr_tordbg( tor, "%s", "[LAZY] uh oh, the files disappeared" ); - tr_torrentSetLocalError( tor, "%s", _( "No data found! Ensure your drives are connected or use \"Set Location\". To re-download, remove the torrent and re-add it." ) ); + tr_torrentSetLocalError( tor, "%s", _( "This torrent's files are missing! (Did you unplug an external drive?)" ) ); } return disappeared;