Changeset 1273
- Timestamp:
- 02/18/10 23:26:20 (5 months ago)
- Files:
-
- 1 modified
-
trunk/CPFPerianPrefPaneController.m (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CPFPerianPrefPaneController.m
r1270 r1273 484 484 ret = YES; 485 485 else 486 [errorString appendFormat:NSLocalizedString(@" Extraction for %@ failed\n", @""), archivePath];486 [errorString appendFormat:NSLocalizedString(@"extraction of %@ failed\n", @""), [finalPath lastPathComponent]]; 487 487 488 488 unsetenv("SRC_ARCHIVE"); … … 521 521 ret = YES; 522 522 else 523 [errorString appendFormat:NSLocalizedString(@" Extraction for %@ failed\n", @""), archivePath];524 } 525 else 526 [errorString appendFormat:NSLocalizedString(@" Authentication failed for extraction for %@\n", @""), archivePath];523 [errorString appendFormat:NSLocalizedString(@"extraction of %@ failed\n", @""), [finalPath lastPathComponent]]; 524 } 525 else 526 [errorString appendFormat:NSLocalizedString(@"authentication failed while extracting %@\n", @""), [finalPath lastPathComponent]]; 527 527 528 528 unsetenv("SRC_ARCHIVE"); … … 552 552 ret = YES; 553 553 else 554 [errorString appendFormat:NSLocalizedString(@" Removal for %@ failed\n", @""), componentPath];555 } 556 else 557 [errorString appendFormat:NSLocalizedString(@" Authentication failed for removal for %@\n", @""), componentPath];554 [errorString appendFormat:NSLocalizedString(@"removal of %@ failed\n", @""), [componentPath lastPathComponent]]; 555 } 556 else 557 [errorString appendFormat:NSLocalizedString(@"authentication failed while removing %@\n", @""), [componentPath lastPathComponent]]; 558 558 559 559 unsetenv("COMP_PATH"); … … 821 821 } else if ([status isEqualToString:@"NoUpdates"]) { 822 822 [textField_updateStatus setStringValue:@"There are no updates."]; 823 } else if ([status isEqualToString:@" NoUpdates"]) {823 } else if ([status isEqualToString:@"YesUpdates"]) { 824 824 [textField_updateStatus setStringValue:@"Updates found!"]; 825 825 }
