diff --git a/Timeline/src/org/sleuthkit/autopsy/timeline/Bundle.properties b/Timeline/src/org/sleuthkit/autopsy/timeline/Bundle.properties index b997744697..b320647823 100644 --- a/Timeline/src/org/sleuthkit/autopsy/timeline/Bundle.properties +++ b/Timeline/src/org/sleuthkit/autopsy/timeline/Bundle.properties @@ -30,3 +30,4 @@ Timeline.propChg.confDlg.timelineOOD.msg=Timeline is out of date. Would you like Timeline.propChg.confDlg.timelineOOD.details=Select an option Timeline.initTimeline.confDlg.genBeforeIngest.msg=You are trying to generate a timeline before ingest has been completed. The timeline may be incomplete. Do you want to continue? Timeline.initTimeline.confDlg.genBeforeIngest.deails=Timeline +TimelineProgressDialog.setName.text=Make Timeline (Beta) diff --git a/Timeline/src/org/sleuthkit/autopsy/timeline/TimelineProgressDialog.java b/Timeline/src/org/sleuthkit/autopsy/timeline/TimelineProgressDialog.java index a1b834fb5c..5b83b1b8c9 100644 --- a/Timeline/src/org/sleuthkit/autopsy/timeline/TimelineProgressDialog.java +++ b/Timeline/src/org/sleuthkit/autopsy/timeline/TimelineProgressDialog.java @@ -26,6 +26,8 @@ import javax.swing.ActionMap; import javax.swing.InputMap; import javax.swing.JComponent; import javax.swing.KeyStroke; + +import org.openide.util.NbBundle; import org.openide.windows.WindowManager; /** @@ -55,7 +57,7 @@ import org.openide.windows.WindowManager; //progressBar.setIndeterminate(true); - setName("Make Timeline (Beta)"); + setName(NbBundle.getMessage(this.getClass(), "TimelineProgressDialog.setName.text")); // Close the dialog when Esc is pressed String cancelName = "cancel";