X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FRedundancyPanel.java;h=345c906b8c71344aa4e968264f39db971274afb3;hb=23b954d9c84a16a7dc12ab331a01e44d5e0e5cd4;hp=bd4ac64c9df5ae0ffd2f564aa472cdcf8d1798d7;hpb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;p=jalview.git diff --git a/src/jalview/appletgui/RedundancyPanel.java b/src/jalview/appletgui/RedundancyPanel.java old mode 100755 new mode 100644 index bd4ac64..345c906 --- a/src/jalview/appletgui/RedundancyPanel.java +++ b/src/jalview/appletgui/RedundancyPanel.java @@ -1,19 +1,20 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, 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. * * 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. - * + * * 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 . + * 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);