mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
change manager back
This commit is contained in:
parent
86f529534e
commit
db0e149d47
@ -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
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user