From: Emmanuel S. <se...@us...> - 2005-07-17 22:52:28
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11771/fr/default/global Modified Files: choose-product.html.tmpl code-error.html.tmpl field-descs.none.tmpl header.html.tmpl hidden-fields.html.tmpl user-error.html.tmpl variables.none.tmpl Log Message: Passage de 2.18 a 2.18.1 Index: variables.none.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/variables.none.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** variables.none.tmpl 9 Dec 2004 23:16:15 -0000 1.3 --- variables.none.tmpl 17 Jul 2005 22:52:18 -0000 1.4 *************** *** 29,32 **** --- 29,45 ---- #%] + [%# Note on changing terms: + # Changing this will not affect "linkification" of your new terms. + # This means if you change "bug" to "problem", then if you have + # "problem 3" in a comment, it won't become a clickable URL. + # To have that feature, you must edit the quoteUrls function in + # globals.pl (in the base Bugzilla directory). + # Change the line: + # my $bug_re = qr/bug\s*\#?\s*(\d+)/i; + # to something like: + # my $bug_re = qr/(?:bug|problem)\s*\#?\s*(\d+)/i; + # (here "problem" was used instead of bug - substitute as needed!). + #%] + [% terms = { "bug" => "bug", Index: user-error.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/user-error.html.tmpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** user-error.html.tmpl 28 May 2005 18:44:44 -0000 1.11 --- user-error.html.tmpl 17 Jul 2005 22:52:18 -0000 1.12 *************** *** 166,171 **** [% ELSIF error == "entry_access_denied" %] [% title = "Autorisation Refusé" %] ! Désolé; vous n'avew pas les autorisations nécessaires pour soumettre [% terms.abug %] ! pour le produit [% product FILTER html %]. [% ELSIF error == "file_not_specified" %] --- 166,172 ---- [% ELSIF error == "entry_access_denied" %] [% title = "Autorisation Refusé" %] ! Désolé, soit le produit <em>[% product FILTER html %]</em> n'existe ! pas, soit vous n'avez pas les droits nécéssaires pour ! soumettre [% terms.abug %] contre ce produit. [% ELSIF error == "file_not_specified" %] *************** *** 483,494 **** [% terms.bugs %]. - [% ELSIF error == "need_numeric_value" %] - [% title = "Valeur Numérique Requise" %] - Les heures demandent une valeur numérique. - - [% ELSIF error == "need_positive_number" %] - [% title = "Nombre Positif Requis" %] - Le champ <em>[% field_descs.$field FILTER html %]</em> demande un nombre positif. - [% ELSIF error == "need_product" %] [% title = "Produit Requis" %] --- 484,487 ---- *************** *** 564,570 **** [% ELSIF error == "no_products" %] [% title = "Aucun Produit" %] ! Soit aucun produit n'a été défini pour y soumettre des [% terms.bugs %] ou vous n'avez accés à aucun. [% ELSIF error == "old_password_incorrect" %] [% title = "Mauvais Ancien Mot de Passe" %] --- 557,581 ---- [% ELSIF error == "no_products" %] [% title = "Aucun Produit" %] ! Soit aucun produit n'a été défini pour y soumettre des [% terms.bugs %], soit vous n'avez accés à aucun. + [% ELSIF error == "number_not_numeric" %] + [% title = "Valeur Numérique Requise" %] + La valeur '[% num FILTER html %]' dans le champ + <em>[% field_descs.$field FILTER html %]</em> + n'est pas une valeur numérique. + + [% ELSIF error == "number_too_large" %] + [% title = "Nombre Trop Grand" %] + La valeur '[% num FILTER html %]' dans le + champ <em>[% field_descs.$field FILTER html %]</em> + est plus grande que la valeur maximale autorisée de '[% max_num FILTER html %]'. + + [% ELSIF error == "number_too_small" %] + [% title = "Nombre Trop Petit" %] + La valeur '[% num FILTER html %]' + dans le champs <em>[% field_descs.$field FILTER html %]</em> + est plus petite que la valeur minimale autorisée de '[% min_num FILTER html %]'. + [% ELSIF error == "old_password_incorrect" %] [% title = "Mauvais Ancien Mot de Passe" %] *************** *** 596,599 **** --- 607,615 ---- Essayez de diviser votre patch en plusieurs pièces. + [% ELSIF error == "product_disabled" %] + [% title = BLOCK %]Produit fermé pour la Soumission de [% terms.Bugs %][% END %] + Désolé, la possibilité de rapporter des [% terms.bugs %] contre le + produit <em>[% product FILTER html %]</em> a été desactivé. + [% ELSIF error == "product_edit_denied" %] [% title = "Accés à la Modification des Produits Refusé" %] Index: header.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/header.html.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** header.html.tmpl 8 Jul 2005 18:05:14 -0000 1.4 --- header.html.tmpl 17 Jul 2005 22:52:18 -0000 1.5 *************** *** 32,35 **** --- 32,36 ---- # onload: string. JavaScript code to run when the page finishes loading. # javascript: string. Javascript to go in the header. + # javascript_urls: list. List of URLs to Javascript # style: string. CSS style. # style_urls: list. List of URLs to CSS style sheets. *************** *** 74,77 **** --- 75,84 ---- [% END %] + [% IF javascript_urls %] + [% FOREACH javascript_url = javascript_urls %] + <script src="[% javascript_url FILTER html %]" type="text/javascript" language="JavaScript"></script> + [% END %] + [% END %] + [%+ INCLUDE "global/help-header.html.tmpl" %] Index: choose-product.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/choose-product.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** choose-product.html.tmpl 16 Nov 2004 00:25:30 -0000 1.2 --- choose-product.html.tmpl 17 Jul 2005 22:52:18 -0000 1.3 *************** *** 43,48 **** <tr> <th align="right" valign="top"> ! <a href="[% target %]?product=[% p FILTER url_quote %] ! [% IF format %]&format=[% format FILTER url_quote %][% END %]"> [% p FILTER html %]</a>: </th> --- 43,48 ---- <tr> <th align="right" valign="top"> ! <a href="[% target %]?product=[% p FILTER url_quote -%] ! [%- IF format %]&format=[% format FILTER url_quote %][% END %]"> [% p FILTER html %]</a>: </th> Index: code-error.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/code-error.html.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** code-error.html.tmpl 9 Mar 2005 00:11:30 -0000 1.4 --- code-error.html.tmpl 17 Jul 2005 22:52:18 -0000 1.5 *************** *** 44,48 **** [% ELSIF error == "attachment_already_obsolete" %] ! La pièce jointe #[% attachid FILTER html %] ([% description FILTER html %]) est déjà obsolète. --- 44,48 ---- [% ELSIF error == "attachment_already_obsolete" %] ! La pièce jointe #[% attach_id FILTER html %] ([% description FILTER html %]) est déjà obsolète. Index: hidden-fields.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/hidden-fields.html.tmpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** hidden-fields.html.tmpl 6 Sep 2004 20:41:12 -0000 1.1.1.1 --- hidden-fields.html.tmpl 17 Jul 2005 22:52:18 -0000 1.2 *************** *** 31,35 **** [% FOREACH field = form %] [% NEXT IF exclude && field.key.search(exclude) %] ! [% IF mform.${field.key}.size > 1 %] [% FOREACH mvalue = mform.${field.key} %] <input type="hidden" name="[% field.key FILTER html %]" --- 31,35 ---- [% FOREACH field = form %] [% NEXT IF exclude && field.key.search(exclude) %] ! [% IF mform.${field.key} && mform.${field.key}.size > 1 %] [% FOREACH mvalue = mform.${field.key} %] <input type="hidden" name="[% field.key FILTER html %]" Index: field-descs.none.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/field-descs.none.tmpl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** field-descs.none.tmpl 17 Jul 2005 18:11:22 -0000 1.9 --- field-descs.none.tmpl 17 Jul 2005 22:52:18 -0000 1.10 *************** *** 25,28 **** --- 25,29 ---- [% field_descs = { "[Bug creation]" => "[$terms.Bug creation]", + "actual_time" => "Heures Réelles" "alias" => "Alias", "assigned_to" => "Propriétaire", |