X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAnnotationExporter.java;h=17f43d9601fc674fc6216fb153d284c12bfa1f29;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=56c6e2de45b97e9c5443d6df60fa66acb88f9902;hpb=cb5d856b1304448cae13a333cbd9017f81520d90;p=jalview.git diff --git a/src/jalview/gui/AnnotationExporter.java b/src/jalview/gui/AnnotationExporter.java index 56c6e2d..17f43d9 100644 --- a/src/jalview/gui/AnnotationExporter.java +++ b/src/jalview/gui/AnnotationExporter.java @@ -1,19 +1,21 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.gui; @@ -73,7 +75,7 @@ public class AnnotationExporter extends JPanel this.ap = ap; features = true; CSVFormat.setVisible(false); - frame.setTitle("Export Features"); + frame.setTitle(MessageManager.getString("label.export_features")); } public void exportAnnotations(AlignmentPanel ap, @@ -87,7 +89,7 @@ public class AnnotationExporter extends JPanel this.annotations = annotations; this.sequenceGroups = list; this.alignmentProperties = alProperties; - frame.setTitle("Export Annotations"); + frame.setTitle(MessageManager.getString("label.export_annotations")); } public void toFile_actionPerformed(ActionEvent e) @@ -96,15 +98,15 @@ public class AnnotationExporter extends JPanel jalview.bin.Cache.getProperty("LAST_DIRECTORY")); chooser.setFileView(new JalviewFileView()); - chooser.setDialogTitle(features ? "Save Features to File" - : "Save Annotation to File"); + chooser.setDialogTitle(features ? MessageManager.getString("label.save_features_to_file") + : MessageManager.getString("label.save_annotation_to_file")); chooser.setToolTipText(MessageManager.getString("action.save")); int value = chooser.showSaveDialog(this); if (value == JalviewFileChooser.APPROVE_OPTION) { - String text = "No features found on alignment"; + String text = MessageManager.getString("label.no_features_on_alignment"); if (features) { if (GFFFormat.isSelected()) @@ -151,7 +153,7 @@ public class AnnotationExporter extends JPanel public void toTextbox_actionPerformed(ActionEvent e) { - String text = "No features found on alignment"; + String text = MessageManager.getString("label.no_features_on_alignment"); if (features) { if (GFFFormat.isSelected()) @@ -184,12 +186,21 @@ public class AnnotationExporter extends JPanel try { cap.setText(text); - Desktop.addInternalFrame(cap, (features ? MessageManager.formatMessage("label.features_for_params", new String[]{ap.alignFrame.getTitle()}) - : MessageManager.formatMessage("label.annotations_for_params", new String[]{ap.alignFrame.getTitle()})), 600, 500); + Desktop.addInternalFrame( + cap, + (features ? MessageManager.formatMessage( + "label.features_for_params", new String[] + { ap.alignFrame.getTitle() }) : MessageManager + .formatMessage("label.annotations_for_params", + new String[] + { ap.alignFrame.getTitle() })), 600, 500); } catch (OutOfMemoryError oom) { - new OOMWarning((features ? MessageManager.formatMessage("label.generating_features_for_params", new String[]{ap.alignFrame.getTitle()}) : MessageManager.formatMessage("label.generating_annotations_for_params", new String[]{ap.alignFrame.getTitle()})) - , oom); + new OOMWarning((features ? MessageManager.formatMessage( + "label.generating_features_for_params", new String[] + { ap.alignFrame.getTitle() }) : MessageManager.formatMessage( + "label.generating_annotations_for_params", new String[] + { ap.alignFrame.getTitle() })), oom); cap.dispose(); }