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 0dbcca03e5..fcd8b62ceb 100755 --- a/Core/src/org/sleuthkit/autopsy/timeline/actions/Bundle.properties-MERGED +++ b/Core/src/org/sleuthkit/autopsy/timeline/actions/Bundle.properties-MERGED @@ -1,5 +1,7 @@ +AddManualEvent.createArtifactFailed=Failed to create artifact for event. AddManualEvent.EventCreationDialogPane.initialize.dataSourcesError=Error getting datasources in case. AddManualEvent.longText=Manually add an event to the timeline. +AddManualEvent.postArtifactFailed=Failed to post artifact to blackboard. AddManualEvent.text=Add Event # {0} - action accelerator keys Back.longText=Back: {0}\nGo back to the last view settings. diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java index 5817d20a5b..f2bd9f4470 100644 --- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java +++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java @@ -283,7 +283,7 @@ class ExtractIE extends Extract { try { blackboard.postArtifacts(bbartifacts, moduleName); } catch (Blackboard.BlackboardException ex) { - this.addErrorMessage(Bundle.ExtractIE_getCookie_errMsg_errPostinCookiess()); + this.addErrorMessage(Bundle.ExtractIE_getCookie_errMsg_errPostingCookiess()); logger.log(Level.SEVERE, "Exception thrown while posting IE cookie artifact.", ex); //NON-NLS } }