2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import java.text.MessageFormat;
24 import java.util.Locale;
25 import java.util.ResourceBundle;
26 import java.util.logging.Level;
27 import java.util.logging.Logger;
31 * @author David Roldan Martinez
32 * @author Thomas Abeel
36 public class MessageManager
39 private static ResourceBundle rb;
41 private static Logger log = Logger.getLogger(MessageManager.class
44 private static Locale loc;
50 /* Localize Java dialogs */
51 loc = Locale.getDefault();
52 // Locale.setDefault(loc);
53 /* Getting messages for GV */
54 log.info("Getting messages for lang: " + loc);
55 rb = ResourceBundle.getBundle("lang.Messages", loc);
56 if (log.isLoggable(Level.FINEST))
58 // this might take a while, so we only do it if it will be shown
59 log.finest("Language keys: " + rb.keySet());
63 log.warning("Exception when initting Locale for i18n messages\n"
68 log.warning("Error when initting Locale for i18n messages\n"
75 public static String getString(String key)
77 String value = "[missing key] " + key;
80 value = rb.getString(key);
83 log.warning("I18N missing: " + loc + "\t" + key);
88 public static Locale getLocale()
93 public static String formatMessage(String key, Object... params)
95 return MessageFormat.format(rb.getString(key), params);
98 public static String formatMessage(String key, String[] params)
100 return MessageFormat.format(rb.getString(key), (Object[]) params);
104 * lookup and return a key given a root and a human-readable(ish) name that
105 * when combined might resolve to an i18n string. If the key doesn't resolve,
106 * then name is returned.if the key doesn't exist. Use this for
107 * programatically constructed keys that have have a human readable
108 * alternative used in the program (e.g. BLOSUM62 and label.score_blosum62)
114 public static String getStringOrReturn(String keyroot, String name)
116 String smkey = keyroot + name.toLowerCase().replaceAll(" ", "");
119 name = rb.getString(smkey);
120 } catch (Exception x)
122 log.finest("I18N missing key with root " + keyroot + ": " + loc