5369 minor clean up, update bundle files

This commit is contained in:
William Schaefer 2019-08-27 14:14:55 -04:00
parent ac4895103c
commit f4708ab2fc
3 changed files with 7 additions and 4 deletions

View File

@ -165,5 +165,9 @@ ResultsPanel.invalidPageNumber.title=Invalid Page Number
ResultsPanel.pageControlsLabel.text=Pages: ResultsPanel.pageControlsLabel.text=Pages:
ResultsPanel.gotoPageLabel.text=Go to Page: ResultsPanel.gotoPageLabel.text=Go to Page:
ResultsPanel.pageSizeLabel.text=Page size: ResultsPanel.pageSizeLabel.text=Page size:
ResultsPanel.instancesList.border.title=Duplicate Files ResultsPanel.instancesList.border.title=Instances
SearchNode.getName.text=Search Result SearchNode.getName.text=Search Result
# {0} - numberOfInstances
VideoThumbnailPanel.countLabel.text=Numbber of Instances: {0}
# {0} - fileSize
VideoThumbnailPanel.sizeLabel.text=Size: {0} bytes

View File

@ -32,7 +32,7 @@ import org.openide.util.NbBundle.Messages;
/** /**
* Class which displays thumbnails and information for a video file. * Class which displays thumbnails and information for a video file.
*/ */
public final class VideoThumbnailPanel extends javax.swing.JPanel implements ListCellRenderer<VideoThumbnailsWrapper> { final class VideoThumbnailPanel extends javax.swing.JPanel implements ListCellRenderer<VideoThumbnailsWrapper> {
private static final int GAP_SIZE = 4; private static final int GAP_SIZE = 4;
private static final Color SELECTION_COLOR = new Color(100, 200, 255); private static final Color SELECTION_COLOR = new Color(100, 200, 255);
@ -41,7 +41,7 @@ public final class VideoThumbnailPanel extends javax.swing.JPanel implements Lis
/** /**
* Creates new form VideoThumbnailPanel * Creates new form VideoThumbnailPanel
*/ */
public VideoThumbnailPanel() { VideoThumbnailPanel() {
initComponents(); initComponents();
this.setFocusable(true); this.setFocusable(true);
} }

View File

@ -21,7 +21,6 @@ package org.sleuthkit.autopsy.filequery;
import java.awt.Image; import java.awt.Image;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
import org.sleuthkit.datamodel.TskCoreException;
/** /**
* Class to wrap all the information necessary for video thumbnails to be * Class to wrap all the information necessary for video thumbnails to be