From 02d888274bb6ae9c151497780e9f9cd9a0fee3b5 Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Fri, 14 Sep 2018 14:08:39 -0400 Subject: [PATCH] 4167 rename action text and messages as Common Property Search --- .../CommonAttributePanel.java | 22 +++++++++---------- .../CommonAttributeSearchAction.java | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributePanel.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributePanel.java index 739985db31..c159053f7e 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributePanel.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributePanel.java @@ -74,10 +74,10 @@ final class CommonAttributePanel extends javax.swing.JDialog implements Observer * Creates new form CommonFilesPanel */ @NbBundle.Messages({ - "CommonAttributePanel.title=Common Attribute Panel", + "CommonAttributePanel.title=Common Property Panel", "CommonAttributePanel.exception=Unexpected Exception loading DataSources.", - "CommonAttributePanel.frame.title=Find Common Attributes", - "CommonAttributePanel.frame.msg=Find Common Attributes", + "CommonAttributePanel.frame.title=Find Common Properties", + "CommonAttributePanel.frame.msg=Find Common Properties", "CommonAttributePanel.intraCasePanel.title=Curren Case Options"}) CommonAttributePanel() { super(new JFrame(Bundle.CommonAttributePanel_frame_title()), @@ -183,16 +183,16 @@ final class CommonAttributePanel extends javax.swing.JDialog implements Observer * Perform the common attribute search. */ @NbBundle.Messages({ - "CommonAttributePanel.search.results.titleAll=Common Attributes (All Data Sources)", - "CommonAttributePanel.search.results.titleSingle=Common Attributes (Match Within Data Source: %s)", - "CommonAttributePanel.search.results.pathText=Common Attribute Search Results", - "CommonAttributePanel.search.done.searchProgressGathering=Gathering Common Attribute Search Results.", - "CommonAttributePanel.search.done.searchProgressDisplay=Displaying Common Attribute Search Results.", + "CommonAttributePanel.search.results.titleAll=Common Properties (All Data Sources)", + "CommonAttributePanel.search.results.titleSingle=Common Properties (Match Within Data Source: %s)", + "CommonAttributePanel.search.results.pathText=Common Property Search Results", + "CommonAttributePanel.search.done.searchProgressGathering=Gathering Common Property Search Results.", + "CommonAttributePanel.search.done.searchProgressDisplay=Displaying Common Property Search Results.", "CommonAttributePanel.search.done.tskCoreException=Unable to run query against DB.", "CommonAttributePanel.search.done.noCurrentCaseException=Unable to open case file.", - "CommonAttributePanel.search.done.exception=Unexpected exception running Common Attribute Search.", - "CommonAttributePanel.search.done.interupted=Something went wrong finding common attributes.", - "CommonAttributePanel.search.done.sqlException=Unable to query db for attributes or data sources."}) + "CommonAttributePanel.search.done.exception=Unexpected exception running Common Property Search.", + "CommonAttributePanel.search.done.interupted=Something went wrong finding common properties.", + "CommonAttributePanel.search.done.sqlException=Unable to query db for properties or data sources."}) private void search() { String pathText = Bundle.CommonAttributePanel_search_results_pathText(); diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeSearchAction.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeSearchAction.java index 0d5db72bc4..66a3170c4a 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeSearchAction.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeSearchAction.java @@ -95,7 +95,7 @@ final public class CommonAttributeSearchAction extends CallableSystemAction { } @NbBundle.Messages({ - "CommonAttributeSearchAction.getName.text=Common Attribute Search"}) + "CommonAttributeSearchAction.getName.text=Common Property Search"}) @Override public String getName() { return Bundle.CommonAttributeSearchAction_getName_text();