From 9e25ce6fe077c201719e8d04cd254aff1c845af6 Mon Sep 17 00:00:00 2001 From: Brian Sweeney Date: Tue, 4 Sep 2018 18:32:43 -0600 Subject: [PATCH] MD% verbiage replaced with more generic Value verbiage --- .../autopsy/commonfilesearch/CommonAttributeValueNode.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeValueNode.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeValueNode.java index c7c5dea58b..219072fa2a 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeValueNode.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonAttributeValueNode.java @@ -41,7 +41,7 @@ public class CommonAttributeValueNode extends DisplayableItemNode { private final String dataSources; @NbBundle.Messages({ - "Md5Node.Md5Node.format=MD5: %s" + "CommonAttributeValueNode.CommonAttributeValueNode.format=Value: %s" }) /** * Create a Match node whose children will all have this object in common. @@ -57,7 +57,7 @@ public class CommonAttributeValueNode extends DisplayableItemNode { this.dataSources = String.join(", ", data.getDataSources()); this.value = data.getValue(); - this.setDisplayName(String.format(Bundle.Md5Node_Md5Node_format(), this.value)); + this.setDisplayName(String.format(Bundle.CommonAttributeValueNode_CommonAttributeValueNode_format(), this.value)); this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/fileset-icon-16.png"); //NON-NLS }