mirror of
https://github.com/transmission/transmission
synced 2025-03-10 06:02:57 +00:00
try to clarify the "not all available" message
This commit is contained in:
parent
1f2d90e4ff
commit
ef4b7b8dc5
2 changed files with 2 additions and 2 deletions
|
@ -370,7 +370,7 @@
|
|||
[window setFrame: windowRect display: YES animate: YES];
|
||||
[fProgressView setHidden: NO];
|
||||
|
||||
[[window standardWindowButton:NSWindowCloseButton] setEnabled: NO];
|
||||
[[window standardWindowButton: NSWindowCloseButton] setEnabled: NO];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1017,7 +1017,7 @@ void completenessChangeCallback(tr_torrent * torrent, cp_status_t status, void *
|
|||
etaString = NSLocalizedString(@"remaining time unknown", "Torrent -> progress string");
|
||||
break;
|
||||
case TR_ETA_NOT_AVAIL:
|
||||
etaString = NSLocalizedString(@"not all available", "Torrent -> progress string");
|
||||
etaString = NSLocalizedString(@"full download not available", "Torrent -> progress string");
|
||||
break;
|
||||
default:
|
||||
etaString = [NSString stringWithFormat: NSLocalizedString(@"%@ remaining", "Torrent -> progress string"),
|
||||
|
|
Loading…
Add table
Reference in a new issue