Author: jflesch
Date: 2006-06-18 19:04:59 +0000 (Sun, 18 Jun 2006)
New Revision: 9305
Modified:
trunk/apps/Thaw/src/thaw/i18n/thaw.properties
trunk/apps/Thaw/src/thaw/plugins/InsertPlugin.java
Log:
Fixing my english and some UI details (thanks to danderson :)
Modified: trunk/apps/Thaw/src/thaw/i18n/thaw.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/thaw.properties 2006-06-18 19:02:33 UTC
(rev 9304)
+++ trunk/apps/Thaw/src/thaw/i18n/thaw.properties 2006-06-18 19:04:59 UTC
(rev 9305)
@@ -25,10 +25,10 @@
thaw.common.selectFiles=Select file(s)
-thaw.common.persistence=Persistence
-thaw.common.persistenceReboot=Until node reboot
-thaw.common.persistenceForever=Forever
-thaw.common.persistenceConnection=Until application connection is lost
+thaw.common.persistence=Keep inserting:
+thaw.common.persistenceReboot=Until the freenet node reboots
+thaw.common.persistenceForever=Until insertion completes
+thaw.common.persistenceConnection=Until Thaw is closed
thaw.common.globalQueue=Global queue
thaw.common.true=True
@@ -62,20 +62,20 @@
thaw.plugin.insert.filesToInsert=File(s) to insert
thaw.plugin.insert.selectKey=Select the kind of key wanted
-thaw.plugin.insert.KSK=KSK (not recommanded)
-thaw.plugin.insert.CHK=CHK (recommanded)
-thaw.plugin.insert.SSK=SSK
+thaw.plugin.insert.KSK=KSK (not recommended)
+thaw.plugin.insert.CHK=CHK (recommended)
+thaw.plugin.insert.SSK=SSK / USK
thaw.plugin.insert.selectRev=Revision
thaw.plugin.insert.selectName=Name
thaw.plugin.insert.publicKey=Public key
thaw.plugin.insert.privateKey=Private key
thaw.plugin.insert.insertAction=Insert
thaw.plugin.insert.priority=Priority
-thaw.plugin.insert.p0=0 (max, *not* recommanded)
-thaw.plugin.insert.p1=1
-thaw.plugin.insert.p2=2 (default)
-thaw.plugin.insert.p3=3 (recommanded)
-thaw.plugin.insert.p4=4
-thaw.plugin.insert.p5=5
-thaw.plugin.insert.p6=6 (min)
+thaw.plugin.insert.p0=Emergency (*not* for normal use)
+thaw.plugin.insert.p1=Very high
+thaw.plugin.insert.p2=High
+thaw.plugin.insert.p3=Medium (recommanded)
+thaw.plugin.insert.p4=Low
+thaw.plugin.insert.p5=Very low
+thaw.plugin.insert.p6=Will never finish
Modified: trunk/apps/Thaw/src/thaw/plugins/InsertPlugin.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/InsertPlugin.java 2006-06-18 19:02:33 UTC
(rev 9304)
+++ trunk/apps/Thaw/src/thaw/plugins/InsertPlugin.java 2006-06-18 19:04:59 UTC
(rev 9305)
@@ -100,9 +100,9 @@
selectKeyLabel = new
JLabel(I18n.getMessage("thaw.plugin.insert.selectKey"));
subSubPanel.add(selectKeyLabel);
keyRadioButtons = new JRadioButton[3];
- keyRadioButtons[0] = new
JRadioButton(I18n.getMessage("thaw.plugin.insert.KSK"));
- keyRadioButtons[1] = new
JRadioButton(I18n.getMessage("thaw.plugin.insert.CHK"));
- keyRadioButtons[1].setSelected(true);
+ keyRadioButtons[0] = new
JRadioButton(I18n.getMessage("thaw.plugin.insert.CHK"));
+ keyRadioButtons[0].setSelected(true);
+ keyRadioButtons[1] = new
JRadioButton(I18n.getMessage("thaw.plugin.insert.KSK"));
keyRadioButtons[2] = new
JRadioButton(I18n.getMessage("thaw.plugin.insert.SSK"));
keyRadioGroup = new ButtonGroup();
for(int i = 0 ; i < keyRadioButtons.length ; i++) {
@@ -174,7 +174,9 @@
I18n.getMessage("thaw.plugin.insert.p2"),
I18n.getMessage("thaw.plugin.insert.p3"),
I18n.getMessage("thaw.plugin.insert.p4"),
- I18n.getMessage("thaw.plugin.insert.p5")
+ I18n.getMessage("thaw.plugin.insert.p5"),
+ I18n.getMessage("thaw.plugin.insert.p6")
+
};
subSubPanel = new JPanel();