2009-10-26 21:48:46 +00:00
|
|
|
package dummy;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Just more strings for xgettext, that don't appear in the source anywhere.
|
|
|
|
* I'm sure there's easier ways to do this, but this will do for now.
|
|
|
|
*
|
|
|
|
* Obviously, do not compile this.
|
|
|
|
*/
|
|
|
|
class Dummy {
|
|
|
|
void dummy {
|
2009-10-31 18:18:36 +00:00
|
|
|
// wars for ConfigClientsHelper
|
2009-10-26 21:48:46 +00:00
|
|
|
_("addressbook");
|
|
|
|
_("i2psnark");
|
|
|
|
_("i2ptunnel");
|
|
|
|
_("susimail");
|
|
|
|
_("susidns");
|
|
|
|
_("routerconsole");
|
|
|
|
|
2009-10-31 18:18:36 +00:00
|
|
|
// clients, taken from clients.config, for ConfigClientsHelper
|
2009-10-26 21:48:46 +00:00
|
|
|
// note that if the wording changes in clients.config, we have to
|
|
|
|
// keep the old string here as well for existing installs
|
|
|
|
_("Web console");
|
|
|
|
_("SAM application bridge");
|
|
|
|
_("Application tunnels");
|
|
|
|
_("My eepsite web server");
|
2009-11-17 19:55:51 +00:00
|
|
|
_("I2P webserver (eepsite)");
|
2009-10-26 21:48:46 +00:00
|
|
|
_("Browser launch at startup");
|
|
|
|
_("BOB application bridge");
|
2009-11-17 19:55:51 +00:00
|
|
|
_("I2P Router Console");
|
|
|
|
_("Open Router Console in web browser at startup");
|
|
|
|
|
2009-10-28 18:26:50 +00:00
|
|
|
// tunnel nicknames, taken from i2ptunnel.config so they will display
|
|
|
|
// nicely under 'local destinations' in the summary bar
|
|
|
|
// note that if the wording changes in i2ptunnel.config, we have to
|
|
|
|
// keep the old string here as well for existing installs
|
|
|
|
_("shared clients");
|
|
|
|
_("IRC proxy");
|
|
|
|
_("eepsite");
|
2009-11-17 19:55:51 +00:00
|
|
|
_("I2P webserver");
|
|
|
|
_("HTTP Proxy");
|
2009-11-09 17:15:19 +00:00
|
|
|
// older names for pre-0.7.4 installs
|
|
|
|
_("eepProxy");
|
|
|
|
_("ircProxy");
|
2009-10-28 18:26:50 +00:00
|
|
|
// hardcoded in i2psnark
|
|
|
|
_("I2PSnark");
|
2009-11-09 17:15:19 +00:00
|
|
|
// hardcoded in iMule?
|
|
|
|
_("iMule");
|
2009-10-31 18:18:36 +00:00
|
|
|
|
2009-11-17 19:55:51 +00:00
|
|
|
|
2009-10-31 18:18:36 +00:00
|
|
|
// standard themes for ConfigUIHelper
|
|
|
|
_("classic");
|
|
|
|
_("dark");
|
|
|
|
_("light");
|
2009-11-17 19:55:51 +00:00
|
|
|
_("midnight");
|
2009-12-19 17:41:47 +00:00
|
|
|
|
|
|
|
// stat groups for stats.jsp
|
|
|
|
_("Bandwidth");
|
|
|
|
_("BandwidthLimiter");
|
|
|
|
_("ClientMessages");
|
|
|
|
_("Encryption");
|
|
|
|
_("i2cp");
|
|
|
|
_("I2PTunnel");
|
|
|
|
_("InNetPool");
|
|
|
|
_("JobQueue");
|
|
|
|
_("NetworkDatabase");
|
|
|
|
_("ntcp");
|
|
|
|
_("Peers");
|
|
|
|
_("Router");
|
|
|
|
_("Stream");
|
|
|
|
_("Throttle");
|
|
|
|
_("Transport");
|
|
|
|
_("Tunnels");
|
|
|
|
_("udp");
|
2010-03-25 20:25:03 +00:00
|
|
|
|
|
|
|
// parameters in transport addresses (netdb.jsp)
|
|
|
|
// may or may not be worth translating
|
|
|
|
_("host");
|
|
|
|
_("key");
|
|
|
|
_("port");
|
|
|
|
// capabilities
|
|
|
|
_("caps");
|
|
|
|
// introducer host
|
|
|
|
_("ihost0");
|
|
|
|
_("ihost1");
|
|
|
|
_("ihost2");
|
|
|
|
// introducer port
|
|
|
|
_("iport0");
|
|
|
|
_("iport1");
|
|
|
|
_("iport2");
|
|
|
|
// introducer key
|
|
|
|
_("ikey0");
|
|
|
|
_("ikey1");
|
|
|
|
_("ikey2");
|
|
|
|
// introducer tag
|
|
|
|
_("itag0");
|
|
|
|
_("itag1");
|
|
|
|
_("itag2");
|
|
|
|
|
2010-06-02 18:16:43 +00:00
|
|
|
// Descriptions for the stats that are graphed by default
|
|
|
|
// There are over 500 stats currently defined, we aren't going to tag them all
|
|
|
|
_("Low-level bandwidth receive rate"); // bw.recvRate
|
|
|
|
_("Low-level bandwidth send rate"); // bw.sendRate
|
|
|
|
_("How many peers we are actively talking with"); // router.activePeers
|
|
|
|
// router.memoryUsed currently has the max size in the description so it can't be tagged
|
|
|
|
|
2009-10-26 21:48:46 +00:00
|
|
|
}
|
|
|
|
}
|