change manager back

This commit is contained in:
momo 2015-11-05 15:25:55 -05:00
parent 86f529534e
commit db0e149d47
3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ IngestJob.progress.dataSourceIngest.initialDisplayName=Analyzing {0}
IngestJob.progress.dataSourceIngest.displayName={0} for {1}
IngestJob.progress.fileIngest.displayName=Analyzing files from {0}
IngestJob.progress.fileIngest.displayName={0} on {1}
IngestJob.progress.cancelling={0} (Canceling... Waiting on module)
IngestJob.progress.canceling={0} (Canceling... Waiting on module)
IngestJob.cancellationDialog.title=Cancel Ingest
IngestDialog.title.text=Ingest Modules
IngestDialog.startButton.title=Start
@ -51,7 +51,7 @@ IngestMessageTopComponent.msgDlg.ingestRpt.text=Ingest Report
IngestMonitor.mgrErrMsg.lowDiskSpace.title=Ingest stopped - low disk space on {0}
IngestMonitor.mgrErrMsg.lowDiskSpace.msg=Stopping ingest due to low disk space on disk {0}. \nEnsure the Case drive has at least 1GB free space and restart ingest.
IngestManager.StartIngestJobsTask.run.displayName=Starting ingest
IngestManager.StartIngestJobsTask.run.cancelling={0} (Canceling...)
IngestManager.StartIngestJobsTask.run.canceling={0} (Canceling...)
IngestMessagePanel.sortByComboBox.model.time=Time
IngestMessagePanel.sortByComboBox.model.priority=Priority
IngestMessagesToolbar.customizeButton.toolTipText=Ingest Messages

View File

@ -922,7 +922,7 @@ final class DataSourceIngestJob {
dataSource.getName());
dataSourceIngestProgress.setDisplayName(
NbBundle.getMessage(this.getClass(),
"IngestJob.progress.cancelling",
"IngestJob.progress.canceling",
displayName));
}
}
@ -937,7 +937,7 @@ final class DataSourceIngestJob {
"IngestJob.progress.fileIngest.displayName",
this.dataSource.getName());
this.fileIngestProgress.setDisplayName(
NbBundle.getMessage(this.getClass(), "IngestJob.progress.cancelling",
NbBundle.getMessage(this.getClass(), "IngestJob.progress.canceling",
displayName));
}
}

View File

@ -945,7 +945,7 @@ public class IngestManager {
@Override
public boolean cancel() {
if (progress != null) {
progress.setDisplayName(NbBundle.getMessage(this.getClass(), "IngestJob.progress.cancelling", displayName));
progress.setDisplayName(NbBundle.getMessage(this.getClass(), "IngestManager.StartIngestJobsTask.run.canceling", displayName));
}
Future<?> handle = ingestJobStarters.remove(threadId);
handle.cancel(true);