|
From: <de...@us...> - 2012-08-23 06:17:03
|
Revision: 7569
http://fudaa.svn.sourceforge.net/fudaa/?rev=7569&view=rev
Author: deniger
Date: 2012-08-23 06:16:52 +0000 (Thu, 23 Aug 2012)
Log Message:
-----------
Modified Paths:
--------------
trunk/business/dodico-h2d/core/src/main/resources/org/fudaa/dodico/h2d/resource/h2d_en.fr_txt
trunk/business/dodico-h2d/io/src/main/java/org/fudaa/dodico/rubar/io/RubarCLIWriter.java
Modified: trunk/business/dodico-h2d/core/src/main/resources/org/fudaa/dodico/h2d/resource/h2d_en.fr_txt
===================================================================
--- trunk/business/dodico-h2d/core/src/main/resources/org/fudaa/dodico/h2d/resource/h2d_en.fr_txt 2012-08-22 23:22:32 UTC (rev 7568)
+++ trunk/business/dodico-h2d/core/src/main/resources/org/fudaa/dodico/h2d/resource/h2d_en.fr_txt 2012-08-23 06:16:52 UTC (rev 7569)
@@ -9,7 +9,7 @@
Le vent ne sont pas correct=The wind is invalid
Le nombre maximum autoris\xE9 de pas de temps par chronique est {0}=The maximum number of time steps for a storm water is {0}
Le nombre maximum autoris\xE9 de chroniques est {0}=The maximum allowed number of storm water is {0}
-Le nombre de pas de temps maximum autoris\xE9 a \xE9t\xE9 d\xE9pass\xE9 (200)=The number of timesteps used is greater than the maximum authorized (200)
+Le nombre de pas de temps maximum autoris\xE9 a \xE9t\xE9 d\xE9pass\xE9 (1000)=The number of timesteps used is greater than the maximum authorized (1000)
Ouvrage {0}=Structure {0}
Impossible de transformer le maillage en T3=The grid can't be transformed to T3
Des points de stockage sont mal positionn\xE9s. Ils ont \xE9t\xE9 replac\xE9s au centre de l'\xE9l\xE9ment englobant=The locations of hydrograph points are wrong. These points have been moved to the center of the containing mesh
Modified: trunk/business/dodico-h2d/io/src/main/java/org/fudaa/dodico/rubar/io/RubarCLIWriter.java
===================================================================
--- trunk/business/dodico-h2d/io/src/main/java/org/fudaa/dodico/rubar/io/RubarCLIWriter.java 2012-08-22 23:22:32 UTC (rev 7568)
+++ trunk/business/dodico-h2d/io/src/main/java/org/fudaa/dodico/rubar/io/RubarCLIWriter.java 2012-08-23 06:16:52 UTC (rev 7569)
@@ -97,9 +97,9 @@
}
// NT
final int[] fmt = new int[] { 6 };
- // 200 est le max de pas de temps \xE0 utiliser
- if (nt > 200) {
- analyze_.addError(H2dResource.getS("Le nombre de pas de temps maximum autoris\xE9 a \xE9t\xE9 d\xE9pass\xE9 (200)."), -1);
+ // 1000 est le max de pas de temps \xE0 utiliser
+ if (nt > 1000) {
+ analyze_.addError(H2dResource.getS("Le nombre de pas de temps maximum autoris\xE9 a \xE9t\xE9 d\xE9pass\xE9 (1000)"), -1);
}
w.intField(0, nt);
w.writeFields(fmt);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|