I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 3c835579 authored by zzz's avatar zzz
Browse files

load translation bundles in plugins

parent e9f1da85
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ import net.i2p.router.RouterContext; ...@@ -17,6 +17,7 @@ import net.i2p.router.RouterContext;
import net.i2p.router.startup.ClientAppConfig; import net.i2p.router.startup.ClientAppConfig;
import net.i2p.router.startup.LoadClientAppsJob; import net.i2p.router.startup.LoadClientAppsJob;
import net.i2p.util.Log; import net.i2p.util.Log;
import net.i2p.util.Translate;
import org.mortbay.http.HttpListener; import org.mortbay.http.HttpListener;
import org.mortbay.jetty.Server; import org.mortbay.jetty.Server;
...@@ -103,6 +104,29 @@ public class PluginStarter implements Runnable { ...@@ -103,6 +104,29 @@ public class PluginStarter implements Runnable {
} }
// add translation jars in console/locale // add translation jars in console/locale
// These will not override existing resource bundles since we are adding them
// later in the classpath.
File localeDir = new File(pluginDir, "console/locale");
if (localeDir.exists() && localeDir.isDirectory()) {
File[] files = localeDir.listFiles();
if (files != null) {
boolean added = false;
for (int i = 0; i < files.length; i++) {
File f = files[i];
if (f.getName().endsWith(".jar")) {
try {
addPath(f.toURI().toURL());
log.error("INFO: Adding translation plugin to classpath: " + f);
added = true;
} catch (Exception e) {
log.error("Plugin " + appName + " bad classpath element: " + f, e);
}
}
}
if (added)
Translate.clearCache();
}
}
// add themes in console/themes // add themes in console/themes
...@@ -196,8 +220,8 @@ public class PluginStarter implements Runnable { ...@@ -196,8 +220,8 @@ public class PluginStarter implements Runnable {
continue; continue;
} }
try { try {
log.error("INFO: Adding plugin classpath: " + f);
addPath(f.toURI().toURL()); addPath(f.toURI().toURL());
log.error("INFO: Adding plugin to classpath: " + f);
} catch (Exception e) { } catch (Exception e) {
log.error("Plugin client " + clientName + " bad classpath element: " + f, e); log.error("Plugin client " + clientName + " bad classpath element: " + f, e);
} }
......
...@@ -126,4 +126,13 @@ public abstract class Translate { ...@@ -126,4 +126,13 @@ public abstract class Translate {
} }
return rv; return rv;
} }
/**
* Clear the cache.
* Call this after adding new bundles to the classpath.
* @since 0.7.12
*/
public static void clearCache() {
_missing.clear();
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment