From cb015c27d8994497983e530001949bfc3878c9a2 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 8 Aug 2011 12:18:21 +0000 Subject: [PATCH] fix the "waiting" short status strings --- macosx/Torrent.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/macosx/Torrent.m b/macosx/Torrent.m index 2d8911b1e..4614fffa1 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -1138,9 +1138,11 @@ int trashDataFile(const char * filename) case TR_STATUS_DOWNLOAD_WAIT: string = [NSLocalizedString(@"Waiting to download", "Torrent -> status string") stringByAppendingEllipsis]; + break; case TR_STATUS_SEED_WAIT: string = [NSLocalizedString(@"Waiting to seed", "Torrent -> status string") stringByAppendingEllipsis]; + break; case TR_STATUS_CHECK_WAIT: string = [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis];