mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
no multi-user settings is not an error
This commit is contained in:
parent
3c235d9bac
commit
c8141cafab
@ -192,7 +192,6 @@ MissingImageDialog.ErrorSettingImage=Error setting image path. Please try again.
|
|||||||
NewCaseVisualPanel1.getName.text=Case Info
|
NewCaseVisualPanel1.getName.text=Case Info
|
||||||
NewCaseVisualPanel1.caseDirBrowse.selectButton.text=Select
|
NewCaseVisualPanel1.caseDirBrowse.selectButton.text=Select
|
||||||
NewCaseVisualPanel1.badCredentials.text=Bad multi-user settings (see Tools, Options, Multi-user) or services are down.
|
NewCaseVisualPanel1.badCredentials.text=Bad multi-user settings (see Tools, Options, Multi-user) or services are down.
|
||||||
NewCaseVisualPanel1.MultiUserDisabled.text=Multi-user cases not enabled. See Tools, Options, Multi-user.
|
|
||||||
NewCaseVisualPanel2.getName.text=Additional Information
|
NewCaseVisualPanel2.getName.text=Additional Information
|
||||||
NewCaseWizardAction.closeCurCase.confMsg.msg=Do you want to save and close this case and proceed with the new case creation?
|
NewCaseWizardAction.closeCurCase.confMsg.msg=Do you want to save and close this case and proceed with the new case creation?
|
||||||
NewCaseWizardAction.closeCurCase.confMsg.title=Warning\: Closing the Current Case
|
NewCaseWizardAction.closeCurCase.confMsg.title=Warning\: Closing the Current Case
|
||||||
@ -255,9 +254,9 @@ SingleUserCaseImporter.WillNotImport=Will not import:
|
|||||||
SingleUserCaseImporter.None=None
|
SingleUserCaseImporter.None=None
|
||||||
SingleUserCaseImporter.ContinueWithImport=Continue with import?
|
SingleUserCaseImporter.ContinueWithImport=Continue with import?
|
||||||
SingleUserCaseImporter.Cancelled=Cancelled
|
SingleUserCaseImporter.Cancelled=Cancelled
|
||||||
NewCaseVisualPanel1.caseParentDirWarningLabel.text=Case directory warning label
|
NewCaseVisualPanel1.caseParentDirWarningLabel.text=
|
||||||
NewCaseVisualPanel1.multiUserCaseRadioButton.text=Multi-user
|
NewCaseVisualPanel1.multiUserCaseRadioButton.text=Multi-user
|
||||||
NewCaseVisualPanel1.singleUserCaseRadioButton.text=Single-user
|
NewCaseVisualPanel1.singleUserCaseRadioButton.text=Single-user
|
||||||
NewCaseVisualPanel1.multiUserSettingsWarningLabel.text=Multi-user settings warning label
|
NewCaseVisualPanel1.multiUserSettingsWarningLabel.text=
|
||||||
Case.deleteReports.deleteFromDiskException.log.msg=Unable to delete the report from the disk.
|
Case.deleteReports.deleteFromDiskException.log.msg=Unable to delete the report from the disk.
|
||||||
Case.deleteReports.deleteFromDiskException.msg=Unable to delete the report {0} from the disk.\nYou may manually delete it from {1}
|
Case.deleteReports.deleteFromDiskException.msg=Unable to delete the report {0} from the disk.\nYou may manually delete it from {1}
|
||||||
|
@ -62,11 +62,9 @@ final class NewCaseVisualPanel1 extends JPanel implements DocumentListener {
|
|||||||
if (UserPreferences.getIsMultiUserModeEnabled()) {
|
if (UserPreferences.getIsMultiUserModeEnabled()) {
|
||||||
multiUserCaseRadioButton.setEnabled(true);
|
multiUserCaseRadioButton.setEnabled(true);
|
||||||
multiUserCaseRadioButton.setSelected(true);
|
multiUserCaseRadioButton.setSelected(true);
|
||||||
multiUserSettingsWarningLabel.setVisible(false);
|
|
||||||
} else {
|
} else {
|
||||||
multiUserCaseRadioButton.setEnabled(false);
|
multiUserCaseRadioButton.setEnabled(false);
|
||||||
singleUserCaseRadioButton.setSelected(true);
|
singleUserCaseRadioButton.setSelected(true);
|
||||||
multiUserSettingsWarningLabel.setText(NbBundle.getMessage(this.getClass(), "NewCaseVisualPanel1.MultiUserDisabled.text"));
|
|
||||||
}
|
}
|
||||||
validateSettings();
|
validateSettings();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user