/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package org.apache.wiki.i18n; import java.text.MessageFormat; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; import org.apache.wiki.WikiEngine; /** * Manages all internationalization in JSPWiki. * * @since 2.6 */ public class InternationalizationManager { /** The name of the ResourceBundle which contains any and all JSPWiki core * resource strings. It's value is {@value}. */ public static final String CORE_BUNDLE = "CoreResources"; /** The name of the ResourceBundle which contains any and all JSPWiki default templates * resource strings. It's value is {@value}. */ public static final String DEF_TEMPLATE = "templates.default"; // public static final String JSPWIKI_BUNDLE = "jspwiki"; // public static final String PLUGINS_BUNDLE = "plugins"; /** * Constructs a new InternationalizationManager. * * @param engine To which engine this belongs to */ public InternationalizationManager( WikiEngine engine ) { } /** * Returns a String from the CORE_BUNDLE using English as the default * locale. * * @param key Key to find * @return The English string * @throws MissingResourceException If there is no such key */ public String get( String key ) throws MissingResourceException { return get( CORE_BUNDLE, Locale.ENGLISH, key ); } /** * Finds a resource bundle. * * @param bundle The ResourceBundle to find. Must exist. * @param locale The Locale to use. Set to null to get the default locale. * @return A localized string * @throws MissingResourceException If the key cannot be located at all, even from the default locale. */ public ResourceBundle getBundle( String bundle, Locale locale ) throws MissingResourceException { if( locale == null ) { locale = Locale.getDefault(); } ResourceBundle b = ResourceBundle.getBundle( bundle, locale ); return b; } /** * If you are too lazy to open your own bundle, use this method * to get a string simply from a bundle. * @param bundle Which bundle the string is in * @param locale Locale to use - null for default * @param key Which key to use. * @return A localized string (or from the default language, if not found) * @throws MissingResourceException If the key cannot be located at all, even from the default locale. */ public String get( String bundle, Locale locale, String key ) throws MissingResourceException { return getBundle( bundle, locale ).getString( key ); } /** * Obtain a parameterized String from the bundle. * @param bundle Which bundle the string is in * @param locale Locale to use - null for default * @param key Which key to use. * @param args parameters to insert in the String. * @return A localized string (or from the default language, if not found) * @throws MissingResourceException If the key cannot be located at all, even from the default locale. */ public String get( String bundle, Locale locale, String key, Object... args ) throws MissingResourceException { MessageFormat mf = new MessageFormat( get( bundle, locale, key ), locale ); return mf.format( args ); } }