diff --git a/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED b/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED index 1cfac53de5..577f5beb6a 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED +++ b/Core/src/org/sleuthkit/autopsy/filequery/Bundle.properties-MERGED @@ -173,6 +173,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 f272bd1e59..5dbe46cd3d 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()));