forked from I2P_Developers/i2p.i2p
- Persistent lang setting with routerconsole.lang=xx
- Loading any page with ?lang=xx changes the persistent setting
- Add a custom Jetty handler to load foo_xx.jsp if it
exists for language xx. This is for jsp files with lots
of text in them. Otherwise use inline translate methods.
Not for included jsps.
- Add a script to create and update messages_xx.po translation
files, and create ResourceBundles from them
- Add class to translate strings from cached ResourceBundles
- Add translate wrappers to HelperBase, FormHandler, and *Renderer,
so calls can be made from both jsp and java files
- Add two example translations on configupdate.jsp - one in
the jsp itself and one in the helper.
- This is for strings in routerconsole only. Will be expanded
to other webapps and the router later.
38 lines
920 B
Java
38 lines
920 B
Java
package net.i2p.router.web;
|
|
|
|
import java.io.Writer;
|
|
|
|
import net.i2p.router.RouterContext;
|
|
|
|
/**
|
|
* Base helper
|
|
*/
|
|
public abstract class HelperBase {
|
|
protected RouterContext _context;
|
|
protected Writer _out;
|
|
|
|
/**
|
|
* Configure this bean to query a particular router context
|
|
*
|
|
* @param contextId beginning few characters of the routerHash, or null to pick
|
|
* the first one we come across.
|
|
*/
|
|
public void setContextId(String contextId) {
|
|
try {
|
|
_context = ContextHelper.getContext(contextId);
|
|
} catch (Throwable t) {
|
|
t.printStackTrace();
|
|
}
|
|
}
|
|
|
|
/** might be useful in the jsp's */
|
|
//public RouterContext getContext() { return _context; }
|
|
|
|
public void setWriter(Writer out) { _out = out; }
|
|
|
|
/** translate a string */
|
|
public String _(String s) {
|
|
return Messages.getString(s, _context);
|
|
}
|
|
}
|