From f45e60a2ee304d9ce3773889affd502ee95f72dc Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sun, 18 Nov 2007 01:03:58 +0000 Subject: [PATCH] add new peer status enum to gui --- macosx/InfoWindowController.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index e000517eb..f7d2e13d9 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -810,13 +810,15 @@ typedef enum case TR_PEER_STATUS_CLIENT_IS_CHOKED: return NSLocalizedString(@"Choked", "peer -> status"); case TR_PEER_STATUS_CLIENT_IS_INTERESTED: - return NSLocalizedString(@"Choked and Interested", "peer -> status"); + return NSLocalizedString(@"Choked & Interested", "peer -> status"); case TR_PEER_STATUS_READY: return NSLocalizedString(@"Ready", "peer -> status"); case TR_PEER_STATUS_REQUEST_SENT: return NSLocalizedString(@"Request Sent", "peer -> status"); case TR_PEER_STATUS_ACTIVE: return NSLocalizedString(@"Active", "peer -> status"); + case TR_PEER_STATUS_ACTIVE_AND_CHOKED: + return NSLocalizedString(@"Active & Interested", "peer -> status"); } } else