From d9c954d0cb6228c1b2b70f96086e5f66c6b7f2d1 Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Tue, 3 Sep 2019 17:43:29 -0400 Subject: [PATCH] 5369 fix typo in word number --- .../org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED | 2 +- .../org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED b/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED index fb3fcfb571..bc2a5e9cb2 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED +++ b/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED @@ -168,6 +168,6 @@ ResultsPanel.pageSizeLabel.text=Page size: ResultsPanel.instancesList.border.title=Instances SearchNode.getName.text=Search Result # {0} - numberOfInstances -VideoThumbnailPanel.countLabel.text=Numbber of Instances: {0} +VideoThumbnailPanel.countLabel.text=Number of Instances: {0} # {0} - fileSize VideoThumbnailPanel.sizeLabel.text=Size: {0} bytes diff --git a/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java b/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java index e68323f2ee..e6dd569b97 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java +++ b/Core/src/org/sleuthkit/autopsy/filequery/VideoThumbnailPanel.java @@ -138,7 +138,7 @@ final class VideoThumbnailPanel extends javax.swing.JPanel implements ListCellRe @Messages({"# {0} - fileSize", "VideoThumbnailPanel.sizeLabel.text=Size: {0} bytes", "# {0} - numberOfInstances", - "VideoThumbnailPanel.countLabel.text=Numbber of Instances: {0}"}) + "VideoThumbnailPanel.countLabel.text=Number of Instances: {0}"}) @Override public Component getListCellRendererComponent(JList list, VideoThumbnailsWrapper value, int index, boolean isSelected, boolean cellHasFocus) { fileSizeLabel.setText(Bundle.VideoThumbnailPanel_sizeLabel_text(value.getResultFile().getFirstInstance().getSize()));