Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 6437 invoked from network); 20 Jun 2009 13:43:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Jun 2009 13:43:41 -0000 Received: (qmail 21975 invoked by uid 500); 20 Jun 2009 13:43:52 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 21891 invoked by uid 500); 20 Jun 2009 13:43:52 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 21882 invoked by uid 99); 20 Jun 2009 13:43:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:43:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Jun 2009 13:43:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 09BD623888D7; Sat, 20 Jun 2009 13:43:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r786821 - /commons/proper/math/trunk/src/java/org/apache/commons/math/MessagesResources_fr.java Date: Sat, 20 Jun 2009 13:43:29 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090620134330.09BD623888D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Sat Jun 20 13:43:29 2009 New Revision: 786821 URL: http://svn.apache.org/viewvc?rev=786821&view=rev Log: error messages for Loess interpolation Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/MessagesResources_fr.java Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/MessagesResources_fr.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/MessagesResources_fr.java?rev=786821&r1=786820&r2=786821&view=diff ============================================================================== --- commons/proper/math/trunk/src/java/org/apache/commons/math/MessagesResources_fr.java (original) +++ commons/proper/math/trunk/src/java/org/apache/commons/math/MessagesResources_fr.java Sat Jun 20 13:43:29 2009 @@ -178,6 +178,30 @@ { "points {0} and {1} are not strictly increasing ({2} >= {3})", "les points {0} et {1} ne sont pas strictements croissants ({2} >= {3})" }, + // org.apache.commons.math.analysis.interpolation.LoessInterpolator + { "bandwidth must be in the interval [0,1], but got {0}", + "la largeur de bande doit \u00eatre dans l''intervalle [0, 1], alors qu'elle vaut {0}" }, + { "the number of robustness iterations must be non-negative, but got {0}", + "le nombre d''it\u00e9rations robuste ne peut \u00eatre n\u00e9gatif, alors qu''il est de {0}" }, + { "Loess expects the abscissa and ordinate arrays to be of the same size, " + + "but got {0} abscisssae and {1} ordinatae", + "la r\u00e9gression Loess n\u00e9cessite autant d''abscisses que d''ordonn\u00e9es, " + + "mais {0} abscisses et {1} ordonn\u00e9es ont \u00e9t\u00e9 fournies" }, + { "Loess expects at least 1 point", + "la r\u00e9gression Loess n\u00e9cessite au moins un point" }, + { "the bandwidth must be large enough to accomodate at least 2 points. There are {0} " + + " data points, and bandwidth must be at least {1} but it is only {2}", + "la largeur de bande doit \u00eatre assez grande pour supporter au moins 2 points. Il y a {0}" + + "donn\u00e9es et la largeur de bande doit \u00eatre au moins de {1}, or elle est seulement de {2}" }, + { "all abscissae must be finite real numbers, but {0}-th is {1}", + "toutes les abscisses doivent \u00eatre des nombres r\u00e9els finis, mais l''abscisse {0} vaut {1}" }, + { "all ordinatae must be finite real numbers, but {0}-th is {1}", + "toutes les ordonn\u00e9es doivent \u00eatre des nombres r\u00e9els finis, mais l''ordonn\u00e9e {0} vaut {1}" }, + { "the abscissae array must be sorted in a strictly increasing order, " + + "but the {0}-th element is {1} whereas {2}-th is {3}", + "les abscisses doivent \u00eatre en ordre strictement croissant, " + + "mais l''\u00e9l\u00e9ment {0} vaut {1} alors que l''\u00e9l\u00e9ment {2} vaut {3}" }, + // org.apache.commons.math.util.ContinuedFraction { "Continued fraction convergents diverged to +/- infinity for value {0}", "Divergence de fraction continue \u00e0 l''infini pour la valeur {0}" },