X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGUserDefinedColours.java;h=d949760f7cea7593f35a9954caec400f7c34b7dc;hb=a8f483d04205bb8273ee311c12968b7e86d205fa;hp=e39e0f433780d7120a5e4dd45ff8e3cecbb9c577;hpb=bfc02f81d9bd87c62b204d0768b16b3efdca684e;p=jalview.git diff --git a/src/jalview/jbgui/GUserDefinedColours.java b/src/jalview/jbgui/GUserDefinedColours.java index e39e0f4..d949760 100755 --- a/src/jalview/jbgui/GUserDefinedColours.java +++ b/src/jalview/jbgui/GUserDefinedColours.java @@ -1,23 +1,25 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) - * Copyright (C) 2010 J Procter, AM Waterhouse, 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. - * + * * 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.jbgui; import jalview.gui.JvSwingUtils; +import jalview.util.MessageManager; import java.awt.*; import java.awt.event.*; @@ -113,7 +115,7 @@ public class GUserDefinedColours extends JPanel gridLayout.setColumns(4); gridLayout.setRows(5); okButton.setFont(new java.awt.Font("Verdana", 0, 11)); - okButton.setText("OK"); + okButton.setText(MessageManager.getString("action.ok")); okButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(ActionEvent e) @@ -122,7 +124,7 @@ public class GUserDefinedColours extends JPanel } }); applyButton.setFont(new java.awt.Font("Verdana", 0, 11)); - applyButton.setText("Apply"); + applyButton.setText(MessageManager.getString("action.apply")); applyButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(ActionEvent e) @@ -131,7 +133,7 @@ public class GUserDefinedColours extends JPanel } }); loadbutton.setFont(new java.awt.Font("Verdana", 0, 11)); - loadbutton.setText("Load scheme"); + loadbutton.setText(MessageManager.getString("action.load_scheme")); loadbutton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(ActionEvent e) @@ -140,7 +142,7 @@ public class GUserDefinedColours extends JPanel } }); savebutton.setFont(new java.awt.Font("Verdana", 0, 11)); - savebutton.setText("Save scheme"); + savebutton.setText(MessageManager.getString("action.save_scheme")); savebutton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(ActionEvent e) @@ -149,7 +151,7 @@ public class GUserDefinedColours extends JPanel } }); cancelButton.setFont(JvSwingUtils.getLabelFont()); - cancelButton.setText("Cancel"); + cancelButton.setText(MessageManager.getString("action.cancel")); cancelButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(ActionEvent e) @@ -162,7 +164,7 @@ public class GUserDefinedColours extends JPanel lowerPanel.setLayout(borderLayout3); colorChooser.setOpaque(false); jLabel1.setFont(JvSwingUtils.getLabelFont()); - jLabel1.setText("Name"); + jLabel1.setText(MessageManager.getString("label.name")); namePanel.setMinimumSize(new Dimension(300, 31)); namePanel.setOpaque(false); namePanel.setPreferredSize(new Dimension(240, 25)); @@ -179,9 +181,8 @@ public class GUserDefinedColours extends JPanel label.setFont(new java.awt.Font("Verdana", Font.ITALIC, 10)); label.setOpaque(false); label.setPreferredSize(new Dimension(260, 34)); - label.setText("Save your colour scheme with a unique name and it will be added " - + "to the Colour menu."); - caseSensitive.setText("Case Sensitive"); + label.setText(MessageManager.formatMessage("label.html_content", new String[]{MessageManager.getString("label.save_colour_scheme_with_unique_name_added_to_colour_menu")})); + caseSensitive.setText(MessageManager.getString("label.case_sensitive")); caseSensitive.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -189,7 +190,7 @@ public class GUserDefinedColours extends JPanel caseSensitive_actionPerformed(e); } }); - lcaseColour.setText("Lower Case Colour"); + lcaseColour.setText(MessageManager.getString("label.lower_case_colour")); lcaseColour.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e)