mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-08 22:29:33 +00:00
Merge pull request #7804 from eugene7646/kws_popup_8508
Fixed an incorrect KWS popup (8508)
This commit is contained in:
commit
ea150d96f9
@ -85,6 +85,8 @@ KeywordSearchFilterNode.getFileActions.searchSameMd5=Search for files with the s
|
|||||||
KeywordSearchFilterNode.getFileActions.viewInNewWinActionLbl=View in New Window
|
KeywordSearchFilterNode.getFileActions.viewInNewWinActionLbl=View in New Window
|
||||||
KeywordSearchIngestModule.init.noKwInLstMsg=No keywords in keyword list.
|
KeywordSearchIngestModule.init.noKwInLstMsg=No keywords in keyword list.
|
||||||
KeywordSearchIngestModule.init.onlyIdxKwSkipMsg=Only indexing will be done and keyword search will be skipped (you can still add keyword lists using the Keyword Lists - Add to Ingest).
|
KeywordSearchIngestModule.init.onlyIdxKwSkipMsg=Only indexing will be done and keyword search will be skipped (you can still add keyword lists using the Keyword Lists - Add to Ingest).
|
||||||
|
KeywordSearchIngestModule.init.SolrIndexingDisabled=Solr indexing is disabled.
|
||||||
|
KeywordSearchIngestModule.init.indexingDisabled=Text indexing is disabled. See user manual section "Limitations of Ad Hoc Keyword Search" for details.
|
||||||
KeywordSearchIngestModule.doInBackGround.displayName=Periodic Keyword Search
|
KeywordSearchIngestModule.doInBackGround.displayName=Periodic Keyword Search
|
||||||
KeywordSearchIngestModule.doInBackGround.finalizeMsg=Finalizing
|
KeywordSearchIngestModule.doInBackGround.finalizeMsg=Finalizing
|
||||||
KeywordSearchIngestModule.doInBackGround.pendingMsg=(Pending)
|
KeywordSearchIngestModule.doInBackGround.pendingMsg=(Pending)
|
||||||
|
@ -137,6 +137,8 @@ KeywordSearchFilterNode.getFileActions.searchSameMd5=Search for files with the s
|
|||||||
KeywordSearchFilterNode.getFileActions.viewInNewWinActionLbl=View in New Window
|
KeywordSearchFilterNode.getFileActions.viewInNewWinActionLbl=View in New Window
|
||||||
KeywordSearchIngestModule.init.noKwInLstMsg=No keywords in keyword list.
|
KeywordSearchIngestModule.init.noKwInLstMsg=No keywords in keyword list.
|
||||||
KeywordSearchIngestModule.init.onlyIdxKwSkipMsg=Only indexing will be done and keyword search will be skipped (you can still add keyword lists using the Keyword Lists - Add to Ingest).
|
KeywordSearchIngestModule.init.onlyIdxKwSkipMsg=Only indexing will be done and keyword search will be skipped (you can still add keyword lists using the Keyword Lists - Add to Ingest).
|
||||||
|
KeywordSearchIngestModule.init.SolrIndexingDisabled=Solr indexing is disabled.
|
||||||
|
KeywordSearchIngestModule.init.indexingDisabled=Text indexing is disabled. See user manual section "Limitations of Ad Hoc Keyword Search" for details.
|
||||||
KeywordSearchIngestModule.doInBackGround.displayName=Periodic Keyword Search
|
KeywordSearchIngestModule.doInBackGround.displayName=Periodic Keyword Search
|
||||||
KeywordSearchIngestModule.doInBackGround.finalizeMsg=Finalizing
|
KeywordSearchIngestModule.doInBackGround.finalizeMsg=Finalizing
|
||||||
KeywordSearchIngestModule.doInBackGround.pendingMsg=(Pending)
|
KeywordSearchIngestModule.doInBackGround.pendingMsg=(Pending)
|
||||||
|
@ -318,9 +318,15 @@ public final class KeywordSearchIngestModule implements FileIngestModule {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!hasKeywordsForSearch) {
|
|
||||||
services.postMessage(IngestMessage.createWarningMessage(KeywordSearchModuleFactory.getModuleName(), NbBundle.getMessage(this.getClass(), "KeywordSearchIngestModule.init.noKwInLstMsg"),
|
if (!settings.isIndexToSolrEnabled()) {
|
||||||
NbBundle.getMessage(this.getClass(), "KeywordSearchIngestModule.init.onlyIdxKwSkipMsg")));
|
services.postMessage(IngestMessage.createWarningMessage(KeywordSearchModuleFactory.getModuleName(), NbBundle.getMessage(this.getClass(), "KeywordSearchIngestModule.init.SolrIndexingDisabled"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "KeywordSearchIngestModule.init.indexingDisabled")));
|
||||||
|
} else {
|
||||||
|
if (!hasKeywordsForSearch) {
|
||||||
|
services.postMessage(IngestMessage.createWarningMessage(KeywordSearchModuleFactory.getModuleName(), NbBundle.getMessage(this.getClass(), "KeywordSearchIngestModule.init.noKwInLstMsg"),
|
||||||
|
NbBundle.getMessage(this.getClass(), "KeywordSearchIngestModule.init.onlyIdxKwSkipMsg")));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user