3 * Copyright © 2008 David Roden
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 package net.pterodactylus.jsite.i18n;
22 import java.awt.event.InputEvent;
23 import java.awt.event.KeyEvent;
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.lang.reflect.Field;
27 import java.text.MessageFormat;
28 import java.util.ArrayList;
29 import java.util.List;
30 import java.util.Locale;
31 import java.util.MissingResourceException;
32 import java.util.Properties;
33 import java.util.StringTokenizer;
34 import java.util.logging.Logger;
36 import javax.swing.KeyStroke;
38 import net.pterodactylus.util.io.Closer;
39 import net.pterodactylus.util.logging.Logging;
42 * Class that handles i18n.
44 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
50 private static final Logger logger = Logging.getLogger(I18n.class.getName());
52 /** List of I18nables that are notified when the language changes. */
53 private static final List<I18nable> i18nables = new ArrayList<I18nable>();
55 /** The current locale. */
56 private static Locale currentLocale;
58 /** The default language. */
59 private static Properties defaultLanguage;
61 /** The current language. */
62 private static Properties currentLanguage;
65 defaultLanguage = new Properties();
66 InputStream inputStream = null;
68 inputStream = I18n.class.getResourceAsStream("jSite.properties");
69 if (inputStream != null) {
70 defaultLanguage.load(inputStream);
72 } catch (IOException e) {
73 /* something is fucked. */
75 setLocale(Locale.getDefault(), false);
79 * Returns the translated value for a key. The translated values may contain
80 * placeholders that are replaced with the given parameters.
86 * The parameters in case the translated value contains
88 * @return The translated message, or the key itself if no translation could
91 public static String get(String key, Object... parameters) {
93 value = currentLanguage.getProperty(key);
95 logger.warning("please fix “" + key + "”!");
96 /* TODO - replace with value when done! */
99 if ((parameters != null) && (parameters.length > 0)) {
100 return MessageFormat.format(value, parameters);
106 * Returns the keycode from the value of the given key. You can specify the
107 * constants in {@link KeyEvent} in the properties file, e.g. VK_S for the
108 * keycode ‘s’ when used for mnemonics.
111 * The key under which the keycode is stored
112 * @return The keycode
114 public static int getKey(String key) {
115 String value = currentLanguage.getProperty(key);
116 if ((value != null) && value.startsWith("VK_")) {
118 Field field = KeyEvent.class.getField(value);
119 return field.getInt(null);
120 } catch (SecurityException e) {
122 } catch (NoSuchFieldException e) {
124 } catch (IllegalArgumentException e) {
126 } catch (IllegalAccessException e) {
130 System.err.println("please fix “" + key + "”!");
131 return KeyEvent.VK_UNDEFINED;
135 * Returns a key stroke for use with swing accelerators.
138 * The key of the key stroke
139 * @return The key stroke, or <code>null</code> if no key stroke could be
140 * created from the translated value
142 public static KeyStroke getKeyStroke(String key) {
143 String value = currentLanguage.getProperty(key);
147 StringTokenizer keyTokens = new StringTokenizer(value, "+- ");
148 int modifierMask = 0;
149 while (keyTokens.hasMoreTokens()) {
150 String keyToken = keyTokens.nextToken();
151 if ("ctrl".equalsIgnoreCase(keyToken)) {
152 modifierMask |= InputEvent.CTRL_DOWN_MASK;
153 } else if ("alt".equalsIgnoreCase(keyToken)) {
154 modifierMask |= InputEvent.ALT_DOWN_MASK;
155 } else if ("shift".equalsIgnoreCase(keyToken)) {
156 modifierMask |= InputEvent.SHIFT_DOWN_MASK;
158 if (keyToken.startsWith("VK_")) {
160 Field field = KeyEvent.class.getField(keyToken);
161 return KeyStroke.getKeyStroke(field.getInt(null), modifierMask);
162 } catch (SecurityException e) {
164 } catch (NoSuchFieldException e) {
166 } catch (IllegalArgumentException e) {
168 } catch (IllegalAccessException e) {
172 return KeyStroke.getKeyStroke(keyToken.charAt(0), modifierMask);
179 * Sets the current locale.
182 * The new locale to use
184 public static void setLocale(Locale newLocale) {
185 setLocale(newLocale, true);
189 * Sets the current locale.
192 * The new locale to use
194 * <code>true</code> to notify registered {@link I18nable}s
195 * after the language was changed
197 private static void setLocale(Locale newLocale, boolean notify) {
198 currentLocale = newLocale;
199 InputStream inputStream = null;
201 currentLanguage = new Properties(defaultLanguage);
202 if (newLocale == Locale.ENGLISH) {
208 inputStream = I18n.class.getResourceAsStream("jSite_" + newLocale.getLanguage() + ".properties");
209 if (inputStream != null) {
210 currentLanguage.load(inputStream);
215 } catch (MissingResourceException mre1) {
216 currentLocale = Locale.ENGLISH;
217 } catch (IOException ioe1) {
218 currentLocale = Locale.ENGLISH;
220 Closer.close(inputStream);
225 * Returns the current locale.
227 * @return The current locale
229 public static Locale getLocale() {
230 return currentLocale;
234 * Finds all available locales.
236 * @return All available locales
238 public static List<Locale> findAvailableLanguages() {
239 List<Locale> availableLanguages = new ArrayList<Locale>();
240 availableLanguages.add(Locale.ENGLISH);
241 availableLanguages.add(Locale.GERMAN);
242 return availableLanguages;
246 * Registers the given I18nable to be updated when the language is changed.
249 * The i18nable to register
251 public static void registerI18nable(I18nable i18nable) {
252 i18nables.add(i18nable);
256 * Deregisters the given I18nable to be updated when the language is
260 * The i18nable to register
262 public static void deregisterI18nable(I18nable i18nable) {
263 i18nables.remove(i18nable);
271 * Notifies all registered {@link I18nable}s that the language was changed.
273 private static void notifyI18nables() {
274 for (I18nable i18nable: i18nables) {
275 i18nable.updateI18n();