for now, manually update error messages on the Mac client to use the proper wording for the "move file" menu item

This commit is contained in:
Mitchell Livingston 2009-11-02 01:33:15 +00:00
parent aac02231c4
commit 9a2cc68cdc
1 changed files with 3 additions and 0 deletions

View File

@ -795,6 +795,9 @@ int trashDataFile(const char * filename)
&& !(error = [NSString stringWithCString: fStat->errorString encoding: NSISOLatin1StringEncoding]))
error = [NSString stringWithFormat: @"(%@)", NSLocalizedString(@"unreadable error", "Torrent -> error string unreadable")];
//libtransmission uses "Set Location", Mac client uses "Move data file to..." - very hacky!
error = [error stringByReplacingOccurrencesOfString: @"Set Location" withString: [@"Move Data File To" stringByAppendingEllipsis]];
return error;
}