Author: jflesch
Date: 2007-06-23 19:23:12 +0000 (Sat, 23 Jun 2007)
New Revision: 13739
Modified:
trunk/apps/Thaw/src/thaw/gui/Table.java
trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties
trunk/apps/Thaw/src/thaw/i18n/thaw.properties
trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties
trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueueTableModel.java
Log:
Fix display of the third column in the download table
Modified: trunk/apps/Thaw/src/thaw/gui/Table.java
===================================================================
--- trunk/apps/Thaw/src/thaw/gui/Table.java 2007-06-23 19:14:41 UTC (rev
13738)
+++ trunk/apps/Thaw/src/thaw/gui/Table.java 2007-06-23 19:23:12 UTC (rev
13739)
@@ -187,7 +187,7 @@
bar.setString(I18n.getMessage("thaw.common.failed"));
if(query.isFinished() && query.isSuccessful())
-
bar.setString(I18n.getMessage("thaw.common.ok"));
+
bar.setString(I18n.getMessage("thaw.common.finished"));
if(!query.isFinished()) {
if (statusInProgressBars)
Modified: trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties 2007-06-23
19:14:41 UTC (rev 13738)
+++ trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties 2007-06-23
19:23:12 UTC (rev 13739)
@@ -70,6 +70,7 @@
thaw.common.failed=ECHEC
thaw.common.done=Fait
thaw.common.ok=Ok
+thaw.common.finished=Fini
thaw.common.search=Recherche
Modified: trunk/apps/Thaw/src/thaw/i18n/thaw.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/thaw.properties 2007-06-23 19:14:41 UTC
(rev 13738)
+++ trunk/apps/Thaw/src/thaw/i18n/thaw.properties 2007-06-23 19:23:12 UTC
(rev 13739)
@@ -72,6 +72,7 @@
thaw.common.failed=FAILED
thaw.common.done=Done
thaw.common.ok=Ok
+thaw.common.finished=Finished
thaw.common.search=Search
Modified: trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties 2007-06-23 19:14:41 UTC
(rev 13738)
+++ trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties 2007-06-23 19:23:12 UTC
(rev 13739)
@@ -70,6 +70,7 @@
thaw.common.failed=ECHEC
thaw.common.done=Fait
thaw.common.ok=Ok
+thaw.common.finished=Fini
thaw.common.search=Recherche
Modified: trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueueTableModel.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueueTableModel.java
2007-06-23 19:14:41 UTC (rev 13738)
+++ trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueueTableModel.java
2007-06-23 19:23:12 UTC (rev 13739)
@@ -136,7 +136,7 @@
if(column == 2)
return
thaw.gui.GUIHelper.getPrintableSize(query.getFileSize());
- if(!isForInsertions && (column == 2)) {
+ if(!isForInsertions && (column == 3)) {
if(query.getPath() != null)
return query.getPath();
else