extract message string

This commit is contained in:
jmillman 2015-07-24 10:13:51 -04:00
parent 4238e33534
commit 561ebdf1c3
2 changed files with 2 additions and 3 deletions

View File

@ -43,3 +43,4 @@ Timeline.progressWindow.name=Timeline
Timeline.progressWindow.title=Generating Timeline data
OpenTimeLineAction.msgdlg.text=Could not create timeline, there are no data sources.
TimeLineTopComponent.timeZonePanel.text=Display Times In\:
datasource.missing.confirmation="The Timeline events database was previously populated with an old version of Autopsy.\nThe data source filter will be unavailable unless you update the events database.\nDo you want to update the events database now?"

View File

@ -677,9 +677,7 @@ public class TimeLineController {
synchronized int showDataSourcesMissingConfirmation() {
return JOptionPane.showConfirmDialog(mainFrame,
"The Timeline events database was previously populated with an old version of Autopsy."
+ "\nThe data source filter will be unavailable unless you update the events database."
+ "\nDo you want to update the events database now?",
NbBundle.getMessage(TimeLineController.class, "datasource.missing.confirmation"),
"Update Timeline database?",
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE);