mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06:15 +00:00
Updated TagsManager for multiuser loading, changed some UI text
This commit is contained in:
parent
a32b95943f
commit
cdcd0fa45e
@ -1,7 +1,7 @@
|
||||
GetTagNameDialog.tagNameField.text=
|
||||
GetTagNameDialog.cancelButton.text=Cancel
|
||||
GetTagNameDialog.okButton.text=OK
|
||||
GetTagNameDialog.preexistingLabel.text=Pre-existing Tags:
|
||||
GetTagNameDialog.preexistingLabel.text=Pre-existing Tag Names:
|
||||
GetTagNameDialog.newTagPanel.border.title=New Tag
|
||||
GetTagNameDialog.tagNameLabel.text=Tag Name:
|
||||
GetTagNameAndCommentDialog.newTagButton.text=New Tag Name
|
||||
@ -58,4 +58,4 @@ OpenOutputFolder.CouldNotOpenOutputFolder=Could not open output folder
|
||||
ShowIngestProgressSnapshotAction.actionName.text=Get Ingest Progress Snapshot
|
||||
OpenPythonModulesFolderAction.actionName.text=Python Plugins
|
||||
OpenPythonModulesFolderAction.errorMsg.folderNotFound=Python plugins folder not found: {0}
|
||||
CTL_OpenPythonModulesFolderAction=Python Plugins
|
||||
CTL_OpenPythonModulesFolderAction=Python Plugins
|
||||
|
@ -1,4 +1,4 @@
|
||||
OptionsCategory_Name_TagNamesOptions=My Tag Names
|
||||
OptionsCategory_Name_TagNamesOptions=Tags
|
||||
OptionsCategory_TagNames=TagNames
|
||||
TagsManager.addContentTag.exception.beginByteOffsetOOR.msg=beginByteOffset \= {0} out of content size range (0 - {1})
|
||||
TagsManager.addContentTag.exception.endByteOffsetOOR.msg=endByteOffset \= {0} out of content size range (0 - {1})
|
||||
@ -13,7 +13,7 @@ TagsManagerOptionsPanel.addTagNameButton.empty=Tag name text is empty.
|
||||
TagsManagerOptionsPanel.addTagNameButton.containInvalidCharacter=Tag name may not contain any of the following symbols\: \\ \: * ? " < > | , ;
|
||||
TagsManagerOptionsPanel.addTagNameButton.alreadyExists=Tag name already exists.
|
||||
TagNamesSettingsPanel.deleteTagNameButton.text=Delete Tag Name
|
||||
TagNamesSettingsPanel.tagNamesListLabel.text=Your tag names:
|
||||
TagNamesSettingsPanel.tagNamesListLabel.text=Tag names:
|
||||
NewUserTagNameDialog.tagNameTextField.text=
|
||||
NewUserTagNameDialog.newTagNameLabel.text=New Tag Name:
|
||||
NewUserTagNameDialog.okButton.text=OK
|
||||
|
@ -29,7 +29,7 @@ import javax.swing.event.DocumentEvent;
|
||||
import javax.swing.event.DocumentListener;
|
||||
import org.openide.util.NbBundle;
|
||||
|
||||
public class NewUserTagNameDialog extends javax.swing.JDialog {
|
||||
class NewUserTagNameDialog extends javax.swing.JDialog {
|
||||
|
||||
private String userTagDisplayName;
|
||||
private BUTTON_PRESSED result;
|
||||
|
@ -37,7 +37,7 @@ import org.sleuthkit.autopsy.coreutils.ModuleSettings;
|
||||
* properties file, able to be used across cases. Potentially room to add other
|
||||
* tag name options in the future.
|
||||
*/
|
||||
public class TagNamesSettingsPanel extends javax.swing.JPanel implements OptionsPanel {
|
||||
final class TagNamesSettingsPanel extends javax.swing.JPanel implements OptionsPanel {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(TagNamesSettingsPanel.class.getName());
|
||||
|
||||
@ -53,7 +53,7 @@ public class TagNamesSettingsPanel extends javax.swing.JPanel implements Options
|
||||
/**
|
||||
* Creates new form TagsManagerOptionsPanel
|
||||
*/
|
||||
public TagNamesSettingsPanel() {
|
||||
TagNamesSettingsPanel() {
|
||||
initComponents();
|
||||
customizeComponents();
|
||||
}
|
||||
|
@ -631,6 +631,9 @@ public class TagsManager implements Closeable {
|
||||
addPredefinedTagNames();
|
||||
addTagNamesFromTagsSettings();
|
||||
tagNamesLoaded = true;
|
||||
} else {
|
||||
// Reload case db tag names in case another user has added some.
|
||||
addTagNamesFromCurrentCase();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user