Fix bundle message

This commit is contained in:
Sophie Mori 2016-11-09 17:40:43 -05:00
parent 6d86bf48c8
commit b3b2b37235

View File

@ -127,7 +127,7 @@ public class ExternalViewerAction extends AbstractAction {
runtime.exec(s); runtime.exec(s);
} catch (IOException ex) { } catch (IOException ex) {
logger.log(Level.WARNING, "Could not open the specified viewer for the given file: " + file.getName(), ex); //NON-NLS logger.log(Level.WARNING, "Could not open the specified viewer for the given file: " + file.getName(), ex); //NON-NLS
JOptionPane.showMessageDialog(null, Bundle.ExternalViewerAction_actionPerformed_failure_message(), Bundle.ExternalViewerAction_actionPerformed_failure_title(), JOptionPane.ERROR_MESSAGE); JOptionPane.showMessageDialog(null, Bundle.ExternalViewerAction_actionPerformed_failure_IO_message(), Bundle.ExternalViewerAction_actionPerformed_failure_title(), JOptionPane.ERROR_MESSAGE);
} }
} else { } else {
try { try {