Changeset 5473
- Timestamp:
- Apr 1, 2008, 2:18:28 AM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 10 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Torrent.m
r5465 r5473 1015 1015 : NSLocalizedString(@"remaining time unknown", "Torrent -> progress string"); 1016 1016 1017 string = [ NSString stringWithFormat: @"%@ - %@", string, etaString];1017 string = [string stringByAppendingFormat: @" - %@", etaString]; 1018 1018 } 1019 1019 … … 1030 1030 NSString * errorString = [self errorMessage]; 1031 1031 if (errorString && ![errorString isEqualToString: @""]) 1032 string = [ NSString stringWithFormat: @"%@: %@", string, errorString];1032 string = [string stringByAppendingFormat: @": %@", errorString]; 1033 1033 } 1034 1034 else
Note: See TracChangeset
for help on using the changeset viewer.