X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FJDatabaseTree.java;h=b2bbdef49cd87d16c5b4daec9faff1eb50dbe2df;hb=b2f9a8d7bce642ff4011bc6d49e02bb0569fbb11;hp=612b83ec2b82942871266a5f7ab6a57355526152;hpb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;p=jalview.git diff --git a/src/jalview/gui/JDatabaseTree.java b/src/jalview/gui/JDatabaseTree.java index 612b83e..b2bbdef 100644 --- a/src/jalview/gui/JDatabaseTree.java +++ b/src/jalview/gui/JDatabaseTree.java @@ -1,6 +1,25 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1) + * 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.gui; import jalview.bin.Cache; +import jalview.util.MessageManager; import jalview.ws.seqfetcher.DbSourceProxy; import java.awt.BorderLayout; @@ -41,7 +60,7 @@ public class JDatabaseTree extends JalviewDialog implements KeyListener JButton getDatabaseSelectorButton() { - final JButton viewdbs = new JButton("--- Select Database ---"); + final JButton viewdbs = new JButton(MessageManager.getString("action.select_ddbb")); viewdbs.addActionListener(new ActionListener() { @@ -344,21 +363,9 @@ public class JDatabaseTree extends JalviewDialog implements KeyListener } else { - if ((admt = dmt.getFirstLeaf()) != null - && admt.getUserObject() != null) - { - // modify db selection to just first leaf. - if (admt.getUserObject() instanceof DbSourceProxy) - { - srcs.add((DbSourceProxy) admt.getUserObject()); - } - else - { - srcs.add(sfetcher.getSourceProxy( - (String) admt.getUserObject()).get(0)); - } - forcedFirstChild = true; - } + srcs.add(sfetcher.getSourceProxy((String) dmt + .getUserObject()).get(0)); + forcedFirstChild = true; } } } @@ -400,23 +407,17 @@ public class JDatabaseTree extends JalviewDialog implements KeyListener if (allowMultiSelections) { - dbstatus.setText("Selected " - + srcs.size() - + " database" - + (srcs.size() == 1 ? "" : "s") - + " to fetch from" - + (srcs.size() > 0 ? " with " + x + " test quer" - + (x == 1 ? "y" : "ies") : ".")); + dbstatus.setText(MessageManager.formatMessage("label.selected_database_to_fetch_from", new String[]{Integer.valueOf(srcs.size()).toString(),(srcs.size() == 1 ? "" : "s"),(srcs.size() > 0 ? " with " + x + " test quer" + (x == 1 ? "y" : "ies") : ".")})); dbstatex.setText(" "); } else { if (nm.length() > 0) { - dbstatus.setText("Database: " + nm); + dbstatus.setText(MessageManager.formatMessage("label.database_param",new String[]{nm})); if (qr.length() > 0) { - dbstatex.setText("Example: " + qr); + dbstatex.setText(MessageManager.formatMessage("label.example_param", new String[]{qr})); } else {