[freenet-cvs] r13287 - in trunk/freenet/src/freenet: l10n node

juiceman at freenetproject.org juiceman at freenetproject.org
Sun May 20 22:05:41 UTC 2007


Author: juiceman
Date: 2007-05-20 22:05:41 +0000 (Sun, 20 May 2007)
New Revision: 13287

Modified:
   trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties
   trunk/freenet/src/freenet/node/NodeClientCore.java
Log:
Missed a L10n string

Modified: trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties
===================================================================
--- trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties	2007-05-20 22:00:47 UTC (rev 13286)
+++ trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties	2007-05-20 22:05:41 UTC (rev 13287)
@@ -495,6 +495,7 @@
 NodeClientCore.lazyResumeLong=The node can load persistent queued requests during startup, or it can read the data into memory and then complete the request resuming process after the node has started up. Shorter start-up times, but uses more memory.
 NodeClientCore.maxUSKFetchers=Maximum number of allowed USK fetchers
 NodeClientCore.maxUSKFetchersLong=Maximum number of allowed USK fetchers
+NodeClientCore.maxUSKFetchersMustBeGreaterThanZero=Must be greater than zero
 NodeClientCore.movingTempDirOnTheFlyNotSupported=Moving temp directory on the fly not supported at present
 NodeClientCore.persistentTempDir=Persistent temp files directory
 NodeClientCore.persistentTempDirLong=Name of directory to put persistent temp files in

Modified: trunk/freenet/src/freenet/node/NodeClientCore.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeClientCore.java	2007-05-20 22:00:47 UTC (rev 13286)
+++ trunk/freenet/src/freenet/node/NodeClientCore.java	2007-05-20 22:05:41 UTC (rev 13287)
@@ -317,7 +317,7 @@
 						return maxBackgroundUSKFetchers;
 					}
 					public void set(int uskFetch) throws InvalidConfigValueException {
-						if(uskFetch <= 0) throw new InvalidConfigValueException(l10n("uskFetchersMustBeGreaterThanZero"));
+						if(uskFetch <= 0) throw new InvalidConfigValueException(l10n("maxUSKFetchersMustBeGreaterThanZero"));
 							maxBackgroundUSKFetchers = uskFetch;
 						}
 					}




More information about the cvs mailing list