X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FFontChooser.java;h=6bc67b5e816291870d2c5f44d0992d5c3f73e79c;hb=2e7da637a195ff484f92a333675284f071657cd6;hp=85537bf53f508d795ee0d1bb2cb26929b4b2a16f;hpb=865a855a4ca87eadb3e5ff284ed32ed307d9c34b;p=jalview.git diff --git a/src/jalview/appletgui/FontChooser.java b/src/jalview/appletgui/FontChooser.java old mode 100755 new mode 100644 index 85537bf..6bc67b5 --- a/src/jalview/appletgui/FontChooser.java +++ b/src/jalview/appletgui/FontChooser.java @@ -1,23 +1,27 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * 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.appletgui; +import jalview.util.MessageManager; + import java.awt.*; import java.awt.event.*; @@ -88,7 +92,8 @@ public class FontChooser extends Panel implements ActionListener, Frame frame = new Frame(); this.frame = frame; frame.add(this); - jalview.bin.JalviewLite.addFrame(frame, "Change Font", 440, 115); + jalview.bin.JalviewLite.addFrame(frame, + MessageManager.getString("action.change_font"), 440, 115); init = false; } @@ -185,7 +190,9 @@ public class FontChooser extends Panel implements ActionListener, fontName.select(lastSelected.getName()); fontStyle.select(lastSelStyle); fontSize.select("" + lastSelSize); - JVDialog d = new JVDialog(this.frame, "Invalid Font", true, 350, 200); + JVDialog d = new JVDialog(this.frame, + MessageManager.getString("label.invalid_font"), true, 350, + 200); Panel mp = new Panel(); d.cancel.setVisible(false); mp.setLayout(new FlowLayout()); @@ -273,7 +280,7 @@ public class FontChooser extends Panel implements ActionListener, { label1.setFont(new java.awt.Font("Verdana", 0, 11)); label1.setAlignment(Label.RIGHT); - label1.setText("Font: "); + label1.setText(MessageManager.getString("label.font")); this.setLayout(borderLayout4); fontSize.setFont(new java.awt.Font("Verdana", 0, 11)); fontSize.addItemListener(this); @@ -281,17 +288,17 @@ public class FontChooser extends Panel implements ActionListener, fontStyle.addItemListener(this); label2.setAlignment(Label.RIGHT); label2.setFont(new java.awt.Font("Verdana", 0, 11)); - label2.setText("Size: "); + label2.setText(MessageManager.getString("label.size")); label3.setAlignment(Label.RIGHT); label3.setFont(new java.awt.Font("Verdana", 0, 11)); - label3.setText("Style: "); + label3.setText(MessageManager.getString("label.style")); fontName.setFont(new java.awt.Font("Verdana", 0, 11)); fontName.addItemListener(this); ok.setFont(new java.awt.Font("Verdana", 0, 11)); - ok.setLabel("OK"); + ok.setLabel(MessageManager.getString("action.ok")); ok.addActionListener(this); cancel.setFont(new java.awt.Font("Verdana", 0, 11)); - cancel.setLabel("Cancel"); + cancel.setLabel(MessageManager.getString("action.cancel")); cancel.addActionListener(this); this.setBackground(Color.white); panel1.setLayout(borderLayout1);