/*
* Apollo - Motion capture and animation system
* Copyright (c) 2005 Apollo
*
* 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.
*
* http://www.gnu.org/copyleft/gpl.html
*
* @author Giovane.Kuhn - brain@netuno.com.br
*
*/
package org.apollo.i18n;
import java.util.Locale;
import java.util.ResourceBundle;
/**
* Class to control apollo i18n.<p>
*
* Credits: BabaXP Team.<br>
*
* @author Giovane.Kuhn on 28/04/2005
*/
public class ApolloResource {
private final static String RESOURCE_FILE = "org.apollo.i18n.Apollo";
private static ResourceBundle resource = ResourceBundle.getBundle(RESOURCE_FILE);
/**
* Configure resource to another Locale
* @param locale Locale to be used
*/
public static void configure(Locale locale) {
resource = ResourceBundle.getBundle(RESOURCE_FILE, locale);
}
/* Apollo */
public static String getApolloVersion() {
return resource.getString("apollo.version");
}
public static String getApolloDescription() {
return resource.getString("apollo.description");
}
public static String getApolloUrl() {
return resource.getString("apollo.url");
}
public static String getApolloCopyright() {
return resource.getString("apollo.copyright");
}
public static String getApolloLicense() {
return resource.getString("apollo.license");
}
public static char getMnemonic(String item) {
String ret = resource.getString(item.toLowerCase() + ".mnemonic");
if (ret.length() == 0) {
return 0;
}
return ret.charAt(0);
}
public static String getText(String item) {
return resource.getString(item.toLowerCase() + ".text");
}
public static String getTitle(String item) {
return resource.getString(item.toLowerCase() + ".title");
}
public static String getMessage(String item) {
return resource.getString(item.toLowerCase() + ".message");
}
}
|