X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAnnotationExporter.java;h=0975d246852ee24bc3be474b9a6299a3a4235375;hb=7ab5d6b0ba5fec1ea4a4239e79c476d841622485;hp=e255cd676acafa7b1aba62d548263eb44def3c0e;hpb=59d682209891099d46b960509907c79e3fb276fe;p=jalview.git diff --git a/src/jalview/gui/AnnotationExporter.java b/src/jalview/gui/AnnotationExporter.java old mode 100755 new mode 100644 index e255cd6..0975d24 --- a/src/jalview/gui/AnnotationExporter.java +++ b/src/jalview/gui/AnnotationExporter.java @@ -1,19 +1,22 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) - * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) + * 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; @@ -26,6 +29,7 @@ import javax.swing.*; import jalview.datamodel.*; import jalview.io.*; +import jalview.util.MessageManager; /** * @@ -96,7 +100,7 @@ public class AnnotationExporter extends JPanel chooser.setFileView(new JalviewFileView()); chooser.setDialogTitle(features ? "Save Features to File" : "Save Annotation to File"); - chooser.setToolTipText("Save"); + chooser.setToolTipText(MessageManager.getString("action.save")); int value = chooser.showSaveDialog(this); @@ -182,13 +186,21 @@ public class AnnotationExporter extends JPanel try { cap.setText(text); - Desktop.addInternalFrame(cap, (features ? "Features for - " - : "Annotations for - ") + 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("generating " - + (features ? "Features for - " : "Annotations for - ") - + 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(); } @@ -229,7 +241,7 @@ public class AnnotationExporter extends JPanel { this.setLayout(new BorderLayout()); - toFile.setText("to File"); + toFile.setText(MessageManager.getString("label.to_file")); toFile.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -237,7 +249,7 @@ public class AnnotationExporter extends JPanel toFile_actionPerformed(e); } }); - toTextbox.setText("to Textbox"); + toTextbox.setText(MessageManager.getString("label.to_textbox")); toTextbox.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -245,7 +257,7 @@ public class AnnotationExporter extends JPanel toTextbox_actionPerformed(e); } }); - close.setText("Close"); + close.setText(MessageManager.getString("action.close")); close.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -259,9 +271,9 @@ public class AnnotationExporter extends JPanel GFFFormat.setOpaque(false); GFFFormat.setText("GFF"); CSVFormat.setOpaque(false); - CSVFormat.setText("CSV(Spreadsheet)"); + CSVFormat.setText(MessageManager.getString("label.csv_spreadsheet")); jLabel1.setHorizontalAlignment(SwingConstants.TRAILING); - jLabel1.setText("Format: "); + jLabel1.setText(MessageManager.getString("action.format") + " "); this.setBackground(Color.white); jPanel3.setBorder(BorderFactory.createEtchedBorder()); jPanel3.setOpaque(false);