Author: jflesch
Date: 2007-09-03 23:57:49 +0000 (Mon, 03 Sep 2007)
New Revision: 14956
Modified:
trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties
trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties
trunk/apps/Thaw/src/thaw/plugins/index/IndexParser.java
Log:
I forgot to update the french translation
Modified: trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties 2007-09-03
23:54:42 UTC (rev 14955)
+++ trunk/apps/Thaw/src/thaw/i18n/source.thaw_fr.properties 2007-09-03
23:57:49 UTC (rev 14956)
@@ -160,6 +160,11 @@
## Plugins
thaw.plugin.queueWatcher=Transferts
+thaw.plugin.queueWatcher.downloadSuccessful='X' t?l?charg? avec succ?s
+thaw.plugin.queueWatcher.downloadFailed=Le t?l?chargement de 'X' a ?chou?
+thaw.plugin.queueWatcher.insertionSuccessful='X' ins?r? avec succ?s
+thaw.plugin.queueWatcher.insertionFailed=L'insertion de 'X' a ?chou?
+
thaw.plugin.insert.fileToInsert=Fichier ? ins?rer
thaw.plugin.insert.filesToInsert=Fichier(s) ? ins?rer
thaw.plugin.insert.selectKey=Selectionner le type de clef voulu
Modified: trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties
===================================================================
--- trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties 2007-09-03 23:54:42 UTC
(rev 14955)
+++ trunk/apps/Thaw/src/thaw/i18n/thaw_fr.properties 2007-09-03 23:57:49 UTC
(rev 14956)
@@ -160,6 +160,11 @@
## Plugins
thaw.plugin.queueWatcher=Transferts
+thaw.plugin.queueWatcher.downloadSuccessful='X' t\u00e9l\u00e9charg\u00e9 avec
succ\u00e8s
+thaw.plugin.queueWatcher.downloadFailed=Le t\u00e9l\u00e9chargement de 'X' a
\u00e9chou\u00e9
+thaw.plugin.queueWatcher.insertionSuccessful='X' ins\u00e9r\u00e9 avec
succ\u00e8s
+thaw.plugin.queueWatcher.insertionFailed=L'insertion de 'X' a \u00e9chou\u00e9
+
thaw.plugin.insert.fileToInsert=Fichier \u00e0 ins\u00e9rer
thaw.plugin.insert.filesToInsert=Fichier(s) \u00e0 ins\u00e9rer
thaw.plugin.insert.selectKey=Selectionner le type de clef voulu
Modified: trunk/apps/Thaw/src/thaw/plugins/index/IndexParser.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/index/IndexParser.java 2007-09-03
23:54:42 UTC (rev 14955)
+++ trunk/apps/Thaw/src/thaw/plugins/index/IndexParser.java 2007-09-03
23:57:49 UTC (rev 14956)
@@ -388,7 +388,7 @@
|| "index".equals(rawName)) { /* links */
if (!index.addLink(attrs.getValue("key"))) {
- throw new SAXException("Index parsing
interrupted because of a backend error (did you delete the index while it was
downloading ?)");
+ throw new SAXException("Index parsing
interrupted because of a backend error");
}
return;
@@ -397,7 +397,7 @@
if (!index.addFile(attrs.getValue("key"),
Long.parseLong(attrs.getValue("size")),
attrs.getValue("mime"))) {
- throw new SAXException("Index parsing
interrupted because of a backend error (did you delete the index while it was
downloading ?)");
+ throw new SAXException("Index parsing
interrupted because of a backend error");
}
} else if ("comments".equals(rawName)) {
@@ -601,13 +601,13 @@
Logger.info(this, "Parsing done");
} catch(javax.xml.parsers.ParserConfigurationException e) {
- Logger.error(this, "Error (1) while parsing index:
"+e.toString());
+ Logger.notice(this, "Error (1) while parsing index:
"+e.toString());
} catch(org.xml.sax.SAXException e) {
- Logger.error(this, "Error (2) while parsing index:
"+e.toString());
+ Logger.notice(this, "Error (2) while parsing index:
"+e.toString());
} catch(java.io.IOException e) {
- Logger.error(this, "Error (3) while parsing index:
"+e.toString());
+ Logger.notice(this, "Error (3) while parsing index:
"+e.toString());
} catch(Exception e) {
- Logger.error(this, "Error (4) while parsing index:
"+e.toString());
+ Logger.notice(this, "Error (4) while parsing index:
"+e.toString());
}
}