LibI18N.java
/***************************************************************************
Copyright 2014 Emily Estes
Licensed 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 net.metanotion.scripting;
// TO DO
// See http://site.icu-project.org/home and https://github.com/SlexAxton/messageformat.js for libs to consider.
/** <b>This class is not finished/implemented.</b> This class implements a scripting library interface for interacting with a
repository of ICU MessageFormat strings and using them in HTML generation. It provides an interface to help with the
selection of the language to use. It provides implementations of several strategies and fallbacks like using the
language headers in the {@link net.metanotion.web.RequestObject}, cookies, and subdomains(e.g. "en.example.com" vs.
"fr.example.com", etc.). It is also possible to pass the chosen format strings through directly, so that they can be
used by the templates.js template library, which (will in the future) provides a UILib.Action method to parse and
use an ICU MessageFormat string. */
public final class LibI18N {
}