i18n
[jSite2.git] / src / net / pterodactylus / jsite / i18n / I18n.java
diff --git a/src/net/pterodactylus/jsite/i18n/I18n.java b/src/net/pterodactylus/jsite/i18n/I18n.java
new file mode 100644 (file)
index 0000000..4a244c5
--- /dev/null
@@ -0,0 +1,181 @@
+/*
+ * jSite2 - I18n.java -
+ * Copyright © 2008 David Roden
+ *
+ * This program 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 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+package net.pterodactylus.jsite.i18n;
+
+import java.awt.event.InputEvent;
+import java.awt.event.KeyEvent;
+import java.io.IOException;
+import java.io.InputStream;
+import java.lang.reflect.Field;
+import java.util.Locale;
+import java.util.MissingResourceException;
+import java.util.Properties;
+import java.util.StringTokenizer;
+
+import javax.swing.KeyStroke;
+
+import net.pterodactylus.util.io.Closer;
+
+/**
+ * Class that handles i18n.
+ * 
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
+ * @version $Id$
+ */
+public class I18n {
+
+       /** The current locale. */
+       private static Locale currentLocale;
+
+       /** The default language. */
+       private static Properties defaultLanguage;
+
+       /** The current language. */
+       private static Properties currentLanguage;
+
+       static {
+               defaultLanguage = new Properties();
+               InputStream inputStream = null;
+               try {
+                       inputStream = I18n.class.getResourceAsStream("jSite.properties");
+                       if (inputStream != null) {
+                               defaultLanguage.load(inputStream);
+                       }
+               } catch (IOException e) {
+                       /* something is fucked. */
+               }
+               setLocale(Locale.getDefault());
+       }
+
+       /**
+        * Returns the translated value for a key.
+        * 
+        * @param key
+        *            The key to get
+        * @return The translated message, or the key itself if no translation could
+        *         be found
+        */
+       public static String get(String key) {
+               String value = null;
+               value = currentLanguage.getProperty(key);
+               if (value == null) {
+                       return key;
+               }
+               return value;
+       }
+
+       /**
+        * Returns the keycode from the value of the given key. You can specify the
+        * constants in {@link KeyEvent} in the properties file, e.g. VK_S for the
+        * keycode ‘s’ when used for mnemonics.
+        * 
+        * @param key
+        *            The key under which the keycode is stored
+        * @return The keycode
+        */
+       public static int getKey(String key) {
+               String value = get(key);
+               if (value.startsWith("VK_")) {
+                       try {
+                               Field field = KeyEvent.class.getField(value);
+                               return field.getInt(null);
+                       } catch (SecurityException e) {
+                               /* ignore. */
+                       } catch (NoSuchFieldException e) {
+                               /* ignore. */
+                       } catch (IllegalArgumentException e) {
+                               /* ignore. */
+                       } catch (IllegalAccessException e) {
+                               /* ignore. */
+                       }
+               }
+               return value.toUpperCase().charAt(0);
+       }
+
+       /**
+        * Returns a key stroke for use with swing accelerators.
+        * 
+        * @param key
+        *            The key of the key stroke
+        * @return The key stroke, or <code>null</code> if no key stroke could be
+        *         created from the translated value
+        */
+       public static KeyStroke getKeyStroke(String key) {
+               String value = get(key);
+               if (value == null) {
+                       return null;
+               }
+               StringTokenizer keyTokens = new StringTokenizer(value, "+- ");
+               int modifierMask = 0;
+               while (keyTokens.hasMoreTokens()) {
+                       String keyToken = keyTokens.nextToken();
+                       if ("ctrl".equalsIgnoreCase(keyToken)) {
+                               modifierMask |= InputEvent.CTRL_DOWN_MASK;
+                       } else if ("alt".equalsIgnoreCase(keyToken)) {
+                               modifierMask |= InputEvent.ALT_DOWN_MASK;
+                       } else if ("shift".equalsIgnoreCase(keyToken)) {
+                               modifierMask |= InputEvent.SHIFT_DOWN_MASK;
+                       } else {
+                               if (keyToken.startsWith("VK_")) {
+                                       try {
+                                               Field field = KeyEvent.class.getField(keyToken);
+                                               System.out.println("asked for: “" + key + "”, will return " + field.getInt(null));
+                                               return KeyStroke.getKeyStroke(field.getInt(null), modifierMask);
+                                       } catch (SecurityException e) {
+                                               /* ignore. */
+                                       } catch (NoSuchFieldException e) {
+                                               /* ignore. */
+                                       } catch (IllegalArgumentException e) {
+                                               /* ignore. */
+                                       } catch (IllegalAccessException e) {
+                                               /* ignore. */
+                                       }
+                               }
+                               System.out.println("asked for: “" + key + "”, will return " + keyToken.charAt(0));
+                               return KeyStroke.getKeyStroke(keyToken.charAt(0), modifierMask);
+                       }
+               }
+               return null;
+       }
+
+       /**
+        * Sets the current locale.
+        * 
+        * @param newLocale
+        *            The new locale to use
+        */
+       public static void setLocale(Locale newLocale) {
+               currentLocale = newLocale;
+               InputStream inputStream = null;
+               try {
+                       currentLanguage = new Properties(defaultLanguage);
+                       inputStream = I18n.class.getResourceAsStream("jSite_" + currentLocale.toString() + ".properties");
+                       if (inputStream != null) {
+                               currentLanguage.load(inputStream);
+                       }
+               } catch (MissingResourceException mre1) {
+                       currentLocale = Locale.ENGLISH;
+               } catch (IOException ioe1) {
+                       currentLocale = Locale.ENGLISH;
+               } finally {
+                       Closer.close(inputStream);
+               }
+       }
+}