1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-15 15:32:59 +00:00

6613 add reminder text to no results dialog

This commit is contained in:
William Schaefer
2020-07-21 13:20:51 -04:00
parent 1bac30d590
commit 889731fb2f

View File

@@ -63,7 +63,10 @@ final class GroupListPanel extends javax.swing.JPanel {
groupKeyList.setListData(new GroupKey[0]);
}
@Messages({"GroupsListPanel.noResults.message.text=No results were found for the selected filters.",
@Messages({"GroupsListPanel.noResults.message.text=No results were found for the selected filters.\n"
+ "Reminder:\n"
+ "- The File Type Identification module must be run on each data source you want to find results in.\n"
+ "- The Hash Lookup and Exif Parser modules should also be run on each data source to ensure complete results.'",
"GroupsListPanel.noResults.title.text=No results found"})
/**
* Subscribe to and update list of groups in response to
@@ -86,7 +89,7 @@ final class GroupListPanel extends javax.swing.JPanel {
JOptionPane.showMessageDialog(DiscoveryTopComponent.getTopComponent(),
Bundle.GroupsListPanel_noResults_message_text(),
Bundle.GroupsListPanel_noResults_title_text(),
JOptionPane.INFORMATION_MESSAGE);
JOptionPane.PLAIN_MESSAGE);
}
setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
});