Author: juiceman
Date: 2007-05-29 03:19:17 +0000 (Tue, 29 May 2007)
New Revision: 13387

Modified:
   trunk/freenet/src/freenet/clients/http/QueueToadlet.java
   trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties
Log:
We don't actually "Delete" anything.  "Remove" sounds better.

Modified: trunk/freenet/src/freenet/clients/http/QueueToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/QueueToadlet.java    2007-05-29 
00:02:30 UTC (rev 13386)
+++ trunk/freenet/src/freenet/clients/http/QueueToadlet.java    2007-05-29 
03:19:17 UTC (rev 13387)
@@ -778,7 +778,7 @@
                HTMLNode deleteNode = new HTMLNode("td", "class", 
"request-delete");
                HTMLNode deleteForm = ctx.addFormChild(deleteNode, "/queue/", 
"queueDeleteForm");
                deleteForm.addChild("input", new String[] { "type", "name", 
"value" }, new String[] { "hidden", "identifier", identifier });
-               deleteForm.addChild("input", new String[] { "type", "name", 
"value" }, new String[] { "submit", "remove_request", 
L10n.getString("QueueToadlet.delete") });
+               deleteForm.addChild("input", new String[] { "type", "name", 
"value" }, new String[] { "submit", "remove_request", 
L10n.getString("QueueToadlet.remove") });

                // If it's failed, offer to restart it

@@ -796,7 +796,7 @@
                HTMLNode panicBox = pageMaker.getInfobox("infobox-alert", 
L10n.getString("QueueToadlet.panicButton"));
                HTMLNode panicForm = 
ctx.addFormChild(pageMaker.getContentNode(panicBox), "/queue/", 
"queuePanicForm");
                panicForm.addChild("#", 
(L10n.getString("QueueToadlet.panicButtonConfirmation") + ' '));
-               panicForm.addChild("input", new String[] { "type", "name", 
"value" }, new String[] { "submit", "remove_AllRequests", 
L10n.getString("QueueToadlet.delete") });
+               panicForm.addChild("input", new String[] { "type", "name", 
"value" }, new String[] { "submit", "remove_AllRequests", 
L10n.getString("QueueToadlet.remove") });
                return panicBox;
        }


Modified: trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties
===================================================================
--- trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties   2007-05-29 
00:02:30 UTC (rev 13386)
+++ trunk/freenet/src/freenet/l10n/freenet.l10n.en.properties   2007-05-29 
03:19:17 UTC (rev 13387)
@@ -633,7 +633,6 @@
 QueueToadlet.completedDtoTemp=Completed downloads to temp
 QueueToadlet.completedU=Completed: Uploads (${size})
 QueueToadlet.completedUDirectory=Completed: Directory Uploads (${size})
-QueueToadlet.delete=Delete
 QueueToadlet.download=Download
 QueueToadlet.errorAccessDenied=Error: Access Denied!
 QueueToadlet.errorAccessDeniedFile=The current configuration of the node 
prohibits you from uploading the file "${file}".
@@ -675,7 +674,7 @@
 QueueToadlet.noTaskOnGlobalQueue=There is no task queued on the global queue 
at the moment.
 QueueToadlet.none=none
 QueueToadlet.panicButton=Panic Button
-QueueToadlet.panicButtonConfirmation=Delete everything without confirmation!
+QueueToadlet.panicButtonConfirmation=Remove all requests without confirmation!
 QueueToadlet.persistence=Persistence
 QueueToadlet.persistenceForever=forever
 QueueToadlet.persistenceNone=none
@@ -693,6 +692,7 @@
 QueueToadlet.progressbarAccurate=This progress value is accurate
 QueueToadlet.progressbarNotAccurate=This progress value is likely to change as 
the file download process has not been finalized
 QueueToadlet.reason=Reason
+QueueToadlet.remove=Remove
 QueueToadlet.requestNavigation=Request Navigation
 QueueToadlet.restart=Restart
 QueueToadlet.size=Size


Reply via email to