5423 fix typo with word number

This commit is contained in:
William Schaefer 2019-09-03 17:57:06 -04:00
parent 1389666cc2
commit cad50a5c17
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ FileSorter.SortingMethod.frequency.displayName=By central repo frequency
FileSorter.SortingMethod.keywordlist.displayName=By keyword list names
FileSorter.SortingMethod.parent.displayName=By parent path
# {0} - numberOfInstances
ImageThumbnailPanel.countLabel.text=Numbber of Instances: {0}
ImageThumbnailPanel.countLabel.text=Number of Instances: {0}
# {0} - fileSize
ImageThumbnailPanel.sizeLabel.text=Size: {0} bytes
ResultsDialog.dialogTitle.text=File search results

View File

@ -94,7 +94,7 @@ public class ImageThumbnailPanel extends javax.swing.JPanel implements ListCellR
@NbBundle.Messages({"# {0} - fileSize",
"ImageThumbnailPanel.sizeLabel.text=Size: {0} bytes",
"# {0} - numberOfInstances",
"ImageThumbnailPanel.countLabel.text=Numbber of Instances: {0}"})
"ImageThumbnailPanel.countLabel.text=Number of Instances: {0}"})
@Override
public Component getListCellRendererComponent(JList<? extends ImageThumbnailWrapper> list, ImageThumbnailWrapper value, int index, boolean isSelected, boolean cellHasFocus) {
fileSizeLabel.setText(Bundle.ImageThumbnailPanel_sizeLabel_text(value.getResultFile().getFirstInstance().getSize()));