diff --git a/Core/src/org/sleuthkit/autopsy/timeline/actions/AddManualEvent.java b/Core/src/org/sleuthkit/autopsy/timeline/actions/AddManualEvent.java index bfbd740ce6..e9a2c378ac 100644 --- a/Core/src/org/sleuthkit/autopsy/timeline/actions/AddManualEvent.java +++ b/Core/src/org/sleuthkit/autopsy/timeline/actions/AddManualEvent.java @@ -69,8 +69,8 @@ import org.sleuthkit.datamodel.timeline.EventType; * the user for event data and then adds it to the case via an artifact. */ @NbBundle.Messages({ - "CreateManualEvent.text=Add Event", - "CreateManualEvent.longText=Manually add an event to the timeline."}) + "AddManualEvent.text=Add Event", + "AddManualEvent.longText=Manually add an event to the timeline."}) public class AddManualEvent extends Action { private final static Logger logger = Logger.getLogger(AddManualEvent.class.getName()); @@ -111,10 +111,10 @@ public class AddManualEvent extends Action { * user can ove ride this. */ public AddManualEvent(TimeLineController controller, Long epochMillis) { - super(Bundle.CreateManualEvent_text()); + super(Bundle.AddManualEvent_text()); this.controller = controller; setGraphic(new ImageView(ADD_EVENT_IMAGE)); - setLongText(Bundle.CreateManualEvent_longText()); + setLongText(Bundle.AddManualEvent_longText()); setEventHandler(actionEvent -> { //shoe the dialog and if it completed normally add the event. diff --git a/Core/src/org/sleuthkit/autopsy/timeline/actions/Bundle.properties-MERGED b/Core/src/org/sleuthkit/autopsy/timeline/actions/Bundle.properties-MERGED index 91e6acb01c..0dbcca03e5 100755 --- a/Core/src/org/sleuthkit/autopsy/timeline/actions/Bundle.properties-MERGED +++ b/Core/src/org/sleuthkit/autopsy/timeline/actions/Bundle.properties-MERGED @@ -1,3 +1,6 @@ +AddManualEvent.EventCreationDialogPane.initialize.dataSourcesError=Error getting datasources in case. +AddManualEvent.longText=Manually add an event to the timeline. +AddManualEvent.text=Add Event # {0} - action accelerator keys Back.longText=Back: {0}\nGo back to the last view settings. Back.text=Back diff --git a/Core/src/org/sleuthkit/autopsy/timeline/ui/Bundle.properties-MERGED b/Core/src/org/sleuthkit/autopsy/timeline/ui/Bundle.properties-MERGED index 7fce69a212..778b857f30 100755 --- a/Core/src/org/sleuthkit/autopsy/timeline/ui/Bundle.properties-MERGED +++ b/Core/src/org/sleuthkit/autopsy/timeline/ui/Bundle.properties-MERGED @@ -58,7 +58,7 @@ ViewFrame.histogramTask.updateUI2=Updating UI ViewFrame.listToggle.text=List ViewFrame.localDateDisabler.errorMessage=Error getting spanning interval. ViewFrame.noEventsDialogLabel.text=There are no events visible with the current zoom / filter settings. -ViewFrame.notification.cacheInvalidated=The event data has changed, the visualization may be out of date. +ViewFrame.notification.cacheInvalidated=The event data has been updated, the visualization may be out of date. ViewFrame.pickerListener.errorMessage=Error responding to date/time picker change. ViewFrame.rangeSliderListener.errorMessage=Error responding to range slider. ViewFrame.refresh.longText=Refresh the view to include information that is in the DB but not displayed, such as newly updated tags.