version 0.4.9.3:
[jSite.git] / src / de / todesbaum / jsite / i18n / I18n.java
1 /*
2  * jSite - a tool for uploading websites into Freenet
3  * Copyright (C) 2006 David Roden
4  *
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.
9  *
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.
14  *
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.
18  */
19
20 package de.todesbaum.jsite.i18n;
21
22 import java.util.Locale;
23 import java.util.MissingResourceException;
24 import java.util.ResourceBundle;
25
26 /**
27  * @author David Roden <droden@gmail.com>
28  * @version $Id$
29  */
30 public class I18n {
31
32         private static Locale defaultLocale = new Locale("en");
33         private static Locale currentLocale;
34
35         public static Locale getLocale() {
36                 if (currentLocale == null) {
37                         currentLocale = Locale.getDefault();
38                 }
39                 return currentLocale;
40         }
41
42         public static void setLocale(Locale locale) {
43                 currentLocale = locale;
44                 Locale.setDefault(locale);
45         }
46
47         public static ResourceBundle getResourceBundle() {
48                 return getResourceBundle(getLocale());
49         }
50
51         public static ResourceBundle getResourceBundle(Locale locale) {
52                 return ResourceBundle.getBundle("de.todesbaum.jsite.i18n.jSite", locale);
53         }
54
55         public static String getMessage(String key) {
56                 try {
57                         return getResourceBundle().getString(key);
58                 } catch (MissingResourceException mre1) {
59                         try {
60                                 return getResourceBundle(defaultLocale).getString(key);
61                         } catch (MissingResourceException mre2) {
62                                 return key;
63                         }
64                 }
65         }
66
67 }