From e57bbc41e4d3fc3064550cc35408614acbf2ecb7 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro <gregd@basistech.com> Date: Fri, 22 Sep 2023 14:31:36 -0400 Subject: [PATCH] message updates --- .../autopsy/keywordsearch/Bundle.properties-MERGED | 6 +++--- .../sleuthkit/autopsy/keywordsearch/SolrSearchService.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties-MERGED b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties-MERGED index 6db88c1ba0..ffdaa49829 100755 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties-MERGED +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties-MERGED @@ -52,7 +52,7 @@ KeywordSearchResultFactory.createNodeForKey.noResultsFound.text=No results found KeywordSearchResultFactory.query.exception.msg=Could not perform the query OpenIDE-Module-Display-Category=Ingest Module -OpenIDE-Module-Long-Description=Keyword Search ingest module.\n\nThe module indexes files found in the disk image at ingest time.\nIt then periodically runs the search on the indexed files using one or more keyword lists (containing pure words and/or regular expressions) and posts results.\n\nThe module also contains additional tools integrated in the main GUI, such as keyword list configuration, keyword search bar in the top-right corner, extracted text viewer and search results viewer showing highlighted keywords found. +OpenIDE-Module-Long-Description=Keyword Search ingest module.\n\nThe module indexes files found in the disk image at ingest time.\nIt then periodically runs the search on the indexed files using one or more keyword lists (containing pure words and/or regular expressions) and posts results.\n\n\The module also contains additional tools integrated in the main GUI, such as keyword list configuration, keyword search bar in the top-right corner, extracted text viewer and search results viewer showing highlighted keywords found. OpenIDE-Module-Name=KeywordSearch OptionsCategory_Name_KeywordSearchOptions=Keyword Search OptionsCategory_Keywords_KeywordSearchOptions=Keyword Search @@ -310,9 +310,9 @@ Server.status.failed.msg=Local Solr server did not respond to status request. Th Server_configureSolrConnection_illegalSolrVersion=The solr version in the case: {0}, is not supported. # {0} - solrVersion # {1} - caseName -Server_configureSolrConnection_unsupportedSolrDesc=<html><body><p style="width: 400px">The current Solr version: {0} in the case: {1} is no longer supported. You can continue without upgrading, but Solr will not be usable while the case is open, and you will encounter errors. You can also choose to upgrade the Solr version for the case. If you choose to do this, you will need to run Keyword Search with Solr indexing selected in order to use Solr features like ad hoc search with images in the case.</p></body></html> +Server_configureSolrConnection_unsupportedSolrDesc=<html><body><p style="width: 400px">This case was made with an older version of Keyword Search that is no longer supported. You can continue without upgrading, but some Keyword Search functionality will not be usable while the case is open, and you will encounter errors. You can also choose to upgrade the Keyword Search version for the case. If you choose to do this, you will need to run Keyword Search with Solr indexing selected in order to use features like ad hoc search with images in the case.</p></body></html> Server_configureSolrConnection_unsupportedSolrDisableOpt=Continue -Server_configureSolrConnection_unsupportedSolrTitle=Unsupported Solr Version +Server_configureSolrConnection_unsupportedSolrTitle=Unsupported Keyword Search in Case Server_configureSolrConnection_unsupportedSolrUpgradeOpt=Upgrade Solr Core SolrConnectionCheck.HostnameOrPort=Invalid hostname and/or port number. SolrConnectionCheck.Hostname=Invalid hostname. diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java index f7f82a7b27..8c6278b5b2 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/SolrSearchService.java @@ -386,10 +386,10 @@ public void openCaseResources(CaseContext context) throws AutopsyServiceExceptio * @throws org.sleuthkit.autopsy.appservices.AutopsyService.AutopsyServiceException */ @NbBundle.Messages({ - "Server_configureSolrConnection_unsupportedSolrTitle=Unsupported Solr Version", + "Server_configureSolrConnection_unsupportedSolrTitle=Unsupported Keyword Search in Case", "# {0} - solrVersion", "# {1} - caseName", - "Server_configureSolrConnection_unsupportedSolrDesc=<html><body><p style=\"width: 400px\">The current Solr version: {0} in the case: {1} is no longer supported. You can continue without upgrading, but Solr will not be usable while the case is open, and you will encounter errors. You can also choose to upgrade the Solr version for the case. If you choose to do this, you will need to run Keyword Search with Solr indexing selected in order to use Solr features like ad hoc search with images in the case.</p></body></html>", + "Server_configureSolrConnection_unsupportedSolrDesc=<html><body><p style=\"width: 400px\">This case was made with an older version of Keyword Search that is no longer supported. You can continue without upgrading, but some Keyword Search functionality will not be usable while the case is open, and you will encounter errors. You can also choose to upgrade the Keyword Search version for the case. If you choose to do this, you will need to run Keyword Search with Solr indexing selected in order to use features like ad hoc search with images in the case.</p></body></html>", "Server_configureSolrConnection_unsupportedSolrDisableOpt=Continue", "Server_configureSolrConnection_unsupportedSolrUpgradeOpt=Upgrade Solr Core" }) @@ -437,7 +437,7 @@ private Index tryUpgradeSolrVersion(CaseContext context, Index index) throws Aut } } - throw new AutopsyServiceException("Unsupported Solr version: " + index.getSolrVersion()); + throw new AutopsyServiceException("Unsupported Keyword Search (Solr " + index.getSolrVersion() + ")"); } /** -- GitLab