mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Changes to ArtifactSelectionDialog
This commit is contained in:
parent
ed4a6ec105
commit
06028be983
@ -36,7 +36,7 @@
|
|||||||
</Group>
|
</Group>
|
||||||
<Group type="102" alignment="0" attributes="0">
|
<Group type="102" alignment="0" attributes="0">
|
||||||
<Component id="titleLabel" min="-2" max="-2" attributes="0"/>
|
<Component id="titleLabel" min="-2" max="-2" attributes="0"/>
|
||||||
<EmptySpace min="0" pref="221" max="32767" attributes="0"/>
|
<EmptySpace min="0" pref="195" max="32767" attributes="0"/>
|
||||||
</Group>
|
</Group>
|
||||||
<Group type="102" alignment="1" attributes="0">
|
<Group type="102" alignment="1" attributes="0">
|
||||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||||
@ -107,6 +107,9 @@
|
|||||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
|
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
|
||||||
<ResourceString bundle="org/sleuthkit/autopsy/report/Bundle.properties" key="ArtifactSelectionDialog.titleLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, "{key}")"/>
|
<ResourceString bundle="org/sleuthkit/autopsy/report/Bundle.properties" key="ArtifactSelectionDialog.titleLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, "{key}")"/>
|
||||||
</Property>
|
</Property>
|
||||||
|
<Property name="toolTipText" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
|
||||||
|
<ResourceString bundle="org/sleuthkit/autopsy/report/Bundle.properties" key="ArtifactSelectionDialog.titleLabel.toolTipText" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, "{key}")"/>
|
||||||
|
</Property>
|
||||||
</Properties>
|
</Properties>
|
||||||
</Component>
|
</Component>
|
||||||
<Component class="javax.swing.JButton" name="selectAllButton">
|
<Component class="javax.swing.JButton" name="selectAllButton">
|
||||||
|
@ -159,6 +159,7 @@ public class ArtifactSelectionDialog extends javax.swing.JDialog {
|
|||||||
});
|
});
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(titleLabel, org.openide.util.NbBundle.getMessage(ArtifactSelectionDialog.class, "ArtifactSelectionDialog.titleLabel.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(titleLabel, org.openide.util.NbBundle.getMessage(ArtifactSelectionDialog.class, "ArtifactSelectionDialog.titleLabel.text")); // NOI18N
|
||||||
|
titleLabel.setToolTipText(org.openide.util.NbBundle.getMessage(ArtifactSelectionDialog.class, "ArtifactSelectionDialog.titleLabel.toolTipText")); // NOI18N
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(selectAllButton, org.openide.util.NbBundle.getMessage(ArtifactSelectionDialog.class, "ArtifactSelectionDialog.selectAllButton.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(selectAllButton, org.openide.util.NbBundle.getMessage(ArtifactSelectionDialog.class, "ArtifactSelectionDialog.selectAllButton.text")); // NOI18N
|
||||||
selectAllButton.addActionListener(new java.awt.event.ActionListener() {
|
selectAllButton.addActionListener(new java.awt.event.ActionListener() {
|
||||||
@ -189,7 +190,7 @@ public class ArtifactSelectionDialog extends javax.swing.JDialog {
|
|||||||
.addComponent(selectAllButton, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)))
|
.addComponent(selectAllButton, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)))
|
||||||
.addGroup(layout.createSequentialGroup()
|
.addGroup(layout.createSequentialGroup()
|
||||||
.addComponent(titleLabel)
|
.addComponent(titleLabel)
|
||||||
.addGap(0, 221, Short.MAX_VALUE))
|
.addGap(0, 195, Short.MAX_VALUE))
|
||||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||||
.addGap(0, 0, Short.MAX_VALUE)
|
.addGap(0, 0, Short.MAX_VALUE)
|
||||||
.addComponent(okButton)))
|
.addComponent(okButton)))
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
OpenIDE-Module-Name=Report
|
OpenIDE-Module-Name=Report
|
||||||
CTL_ReportWizardAction=Run Report
|
CTL_ReportWizardAction=Run Report
|
||||||
ArtifactSelectionDialog.titleLabel.text=Select which artifacts you would like to report on:
|
ArtifactSelectionDialog.titleLabel.text=Select which result types you would like to report on:
|
||||||
ArtifactSelectionDialog.okButton.text=OK
|
ArtifactSelectionDialog.okButton.text=OK
|
||||||
ReportVisualPanel1.reportModulesLabel.text=Report Modules:
|
ReportVisualPanel1.reportModulesLabel.text=Report Modules:
|
||||||
ReportVisualPanel1.invalidModuleWarning=Encountered an invalid Report Module ({0})
|
ReportVisualPanel1.invalidModuleWarning=Encountered an invalid Report Module ({0})
|
||||||
@ -17,7 +17,7 @@ ReportVisualPanel2.allResultsRadioButton.text=All Results
|
|||||||
ReportWizardFileOptionsVisualPanel.selectAllButton.text=Select All
|
ReportWizardFileOptionsVisualPanel.selectAllButton.text=Select All
|
||||||
ReportWizardFileOptionsVisualPanel.deselectAllButton.text=Deselect All
|
ReportWizardFileOptionsVisualPanel.deselectAllButton.text=Deselect All
|
||||||
ReportWizardFileOptionsVisualPanel.jLabel1.text=Select items to include in File Report:
|
ReportWizardFileOptionsVisualPanel.jLabel1.text=Select items to include in File Report:
|
||||||
ArtifactSelectionDialog.dlgTitle.text=Advanced Artifact Selection
|
ArtifactSelectionDialog.dlgTitle.text=Result Type Selection
|
||||||
FileReportDataTypes.filename.text=Name
|
FileReportDataTypes.filename.text=Name
|
||||||
FileReportDataTypes.fileExt.text=File Extension
|
FileReportDataTypes.fileExt.text=File Extension
|
||||||
FileReportDataTypes.fileType.text=File Type
|
FileReportDataTypes.fileType.text=File Type
|
||||||
@ -271,3 +271,4 @@ ReportProgressDialog.reportLabel.text=reportLabel
|
|||||||
ReportProgressDialog.statusMessageLabel.text=processingLabel
|
ReportProgressDialog.statusMessageLabel.text=processingLabel
|
||||||
ReportVisualPanel2.specificTaggedResultsRadioButton.text=Specific Tagged Results
|
ReportVisualPanel2.specificTaggedResultsRadioButton.text=Specific Tagged Results
|
||||||
ReportVisualPanel2.allTaggedResultsRadioButton.text=All Tagged Results
|
ReportVisualPanel2.allTaggedResultsRadioButton.text=All Tagged Results
|
||||||
|
ArtifactSelectionDialog.titleLabel.toolTipText=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user