remove subversion $Id$ tags
[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 ‘Bombe’ Roden <bombe@freenetproject.org>
28  */
29 public class I18n {
30
31         private static Locale defaultLocale = new Locale("en");
32         private static Locale currentLocale;
33
34         public static Locale getLocale() {
35                 if (currentLocale == null) {
36                         currentLocale = Locale.getDefault();
37                 }
38                 return currentLocale;
39         }
40
41         public static void setLocale(Locale locale) {
42                 currentLocale = locale;
43                 Locale.setDefault(locale);
44         }
45
46         public static ResourceBundle getResourceBundle() {
47                 return getResourceBundle(getLocale());
48         }
49
50         public static ResourceBundle getResourceBundle(Locale locale) {
51                 return ResourceBundle.getBundle("de.todesbaum.jsite.i18n.jSite", locale);
52         }
53
54         public static String getMessage(String key) {
55                 try {
56                         return getResourceBundle().getString(key);
57                 } catch (MissingResourceException mre1) {
58                         try {
59                                 return getResourceBundle(defaultLocale).getString(key);
60                         } catch (MissingResourceException mre2) {
61                                 return key;
62                         }
63                 }
64         }
65
66 }