X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FRedundancyPanel.java;h=345c906b8c71344aa4e968264f39db971274afb3;hb=23b954d9c84a16a7dc12ab331a01e44d5e0e5cd4;hp=ef00017d6fa6b6f1b73c4dc9dab3a420f23a025c;hpb=59d682209891099d46b960509907c79e3fb276fe;p=jalview.git diff --git a/src/jalview/appletgui/RedundancyPanel.java b/src/jalview/appletgui/RedundancyPanel.java old mode 100755 new mode 100644 index ef00017..345c906 --- a/src/jalview/appletgui/RedundancyPanel.java +++ b/src/jalview/appletgui/RedundancyPanel.java @@ -1,6 +1,6 @@ /* - * 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.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * @@ -14,6 +14,7 @@ * 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 . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.appletgui; @@ -25,6 +26,7 @@ import java.awt.event.*; import jalview.analysis.AlignSeq; import jalview.commands.*; import jalview.datamodel.*; +import jalview.util.MessageManager; public class RedundancyPanel extends SliderPanel implements Runnable, WindowListener @@ -49,7 +51,7 @@ public class RedundancyPanel extends SliderPanel implements Runnable, applyButton.setVisible(true); allGroupsCheck.setVisible(false); - label.setText("Enter the redundancy threshold"); + label.setText(MessageManager.getString("label.enter_redundancy_threshold")); valueField.setText("100"); slider.setVisibleAmount(1); @@ -69,7 +71,7 @@ public class RedundancyPanel extends SliderPanel implements Runnable, frame = new Frame(); frame.add(this); jalview.bin.JalviewLite.addFrame(frame, - "Redundancy threshold selection", 400, 100); + MessageManager.getString("label.redundancy_threshold_selection"), 400, 100); frame.addWindowListener(this); @@ -91,7 +93,7 @@ public class RedundancyPanel extends SliderPanel implements Runnable, */ public void run() { - label.setText("Calculating...."); + label.setText(MessageManager.getString("label.calculating")); slider.setVisible(false); applyButton.setEnabled(false); @@ -123,7 +125,7 @@ public class RedundancyPanel extends SliderPanel implements Runnable, redundancy = AlignSeq.computeRedundancyMatrix(originalSequences, omitHidden, start, end, false); - label.setText("Enter the redundancy threshold"); + label.setText(MessageManager.getString("label.enter_redundancy_threshold")); slider.setVisible(true); applyButton.setEnabled(true); valueField.setVisible(true);