You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(29) |
Dec
(23) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(9) |
Feb
(19) |
Mar
(30) |
Apr
(10) |
May
(10) |
Jun
(4) |
Jul
(41) |
Aug
(30) |
Sep
(8) |
Oct
(7) |
Nov
(3) |
Dec
|
From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:44
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default/list Modified Files: list-simple.html.tmpl table.html.tmpl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: list-simple.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/list-simple.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** list-simple.html.tmpl 16 Nov 2004 22:02:22 -0000 1.2 --- list-simple.html.tmpl 15 Dec 2004 13:06:25 -0000 1.3 *************** *** 42,45 **** --- 42,46 ---- <head> <title>[% title %]</title> + <base href="[% Param("urlbase") %]"> <link href="css/buglist.css" rel="stylesheet" type="text/css"> </head> Index: table.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/table.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** table.html.tmpl 16 Nov 2004 22:02:22 -0000 1.2 --- table.html.tmpl 15 Dec 2004 13:06:25 -0000 1.3 *************** *** 141,148 **** [% FOREACH bug = bugs %] ! [% FLUSH IF loop.count() % 10 == 1 %] [%# At the beginning of every hundred bugs in the list, start a new table. %] ! [% IF loop.count() % 100 == 1 %] [% tableheader %] [% END %] --- 141,149 ---- [% FOREACH bug = bugs %] ! [% count = loop.count() %] ! [% FLUSH IF count % 10 == 1 %] [%# At the beginning of every hundred bugs in the list, start a new table. %] ! [% IF count() % 100 == 1 %] [% tableheader %] [% END %] *************** *** 151,156 **** bz_[% bug.priority FILTER css_class_quote %] bz_[% bug.bug_status FILTER css_class_quote %] ! bz_[% bug.resolution FILTER css_class_quote %] ! [%+ "bz_secure" IF bug.isingroups %]"> [% IF dotweak %] --- 152,160 ---- bz_[% bug.priority FILTER css_class_quote %] bz_[% bug.bug_status FILTER css_class_quote %] ! [%+ "bz_$bug.resolution" FILTER css_class_quote IF bug.resolution %] ! [%+ "bz_secure" IF bug.isingroups %] ! [%+ count % 2 == 1 ? "bz_odd" : "bz_even" %] ! "> ! [% IF dotweak %] *************** *** 159,164 **** </td> [% END %] ! <td> <a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a> </td> --- 163,169 ---- </td> [% END %] ! <td class="first-child"> <a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a> + <span style="display: none">[%+ '[SEC]' IF bug.secure_mode %]</span> </td> *************** *** 189,191 **** [% END %] - --- 194,195 ---- |
From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:42
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default/bug Modified Files: comments.html.tmpl edit.html.tmpl show.html.tmpl show.xml.tmpl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: show.xml.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/show.xml.tmpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** show.xml.tmpl 6 Sep 2004 20:41:11 -0000 1.1.1.1 --- show.xml.tmpl 15 Dec 2004 13:06:24 -0000 1.2 *************** *** 54,57 **** --- 54,58 ---- [% IF displayfields.long_desc %] [% FOREACH c = bug.longdescs %] + [% NEXT IF c.isprivate && !UserInGroup(Param("insidergroup")) %] <long_desc> <who>[% c.email FILTER xml %]</who> *************** *** 64,67 **** --- 65,69 ---- [% IF displayfields.attachment %] [% FOREACH a = bug.attachments %] + [% NEXT IF c.isprivate && !UserInGroup(Param("insidergroup")) %] <attachment> <attachid>[% a.attachid %]</attachid> Index: comments.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/comments.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** comments.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- comments.html.tmpl 15 Dec 2004 13:06:24 -0000 1.3 *************** *** 68,71 **** --- 68,72 ---- <input type="hidden" name="when-[% count %]" value="[% comment.when %]"> <input type="checkbox" name="isprivate-[% count %]" value="1" + id="isprivate-[% count %]" [% " checked=\"checked\"" IF comment.isprivate %]> Privé </i> Index: show.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/show.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** show.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- show.html.tmpl 15 Dec 2004 13:06:24 -0000 1.3 *************** *** 39,43 **** h2 = filtered_desc h3 = "Modifié pour la dernière fois : $filtered_timestamp" - style_urls = [ "css/edit_bug.css" ] bodyattrs = bodyattrs %] --- 39,42 ---- Index: edit.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/edit.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** edit.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- edit.html.tmpl 15 Dec 2004 13:06:24 -0000 1.3 *************** *** 53,57 **** replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; ! /* <textarea id="comment"> */ var textarea = document.getElementById('comment'); textarea.value += replytext; --- 53,63 ---- replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; ! [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] ! if (document.getElementById('isprivate-'+id).checked) { ! document.getElementById('newcommentprivacy').checked = 'checked'; ! } ! [% END %] ! ! /* <textarea id="comment"> */ var textarea = document.getElementById('comment'); textarea.value += replytext; *************** *** 233,237 **** <td align="right"> ! <b><a href="page.cgi?id=fields.html#severity">S<u>é</u>vérité</a> :</b> </td> [% PROCESS select selname = "bug_severity" accesskey => "e" %] --- 239,243 ---- <td align="right"> ! <b><a href="page.cgi?id=fields.html#bug_severity">S<u>é</u>vérité</a> :</b> </td> [% PROCESS select selname = "bug_severity" accesskey => "e" %] *************** *** 447,451 **** <b><u>C</u>ommentaires Supplémentaires :</b> [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] ! <input type="checkbox" name="commentprivacy" value="1"> Private [% END %] <br> --- 453,458 ---- <b><u>C</u>ommentaires Supplémentaires :</b> [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] ! <input type="checkbox" name="commentprivacy" value="1" ! id="newcommentprivacy"> Privé [% END %] <br> |
From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:41
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default Modified Files: filterexceptions.pl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: filterexceptions.pl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/filterexceptions.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** filterexceptions.pl 6 Sep 2004 20:41:10 -0000 1.1.1.1 --- filterexceptions.pl 15 Dec 2004 13:06:22 -0000 1.2 *************** *** 175,179 **** 'sel.name', 'sel.accesskey', ! '"onchange=\'$sel.onchange\'" IF sel.onchange', ], --- 175,179 ---- 'sel.name', 'sel.accesskey', ! '"onchange=\"$sel.onchange\"" IF sel.onchange', ], *************** *** 461,467 **** 'attachment/diff-header.html.tmpl' => [ 'attachid', 'bugid', - 'old_url', - 'new_url', 'oldid', 'newid', --- 461,466 ---- 'attachment/diff-header.html.tmpl' => [ 'attachid', + 'id', 'bugid', 'oldid', 'newid', |
From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:41
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default/attachment Modified Files: edit.html.tmpl list.html.tmpl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: list.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment/list.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** list.html.tmpl 29 Oct 2004 23:23:25 -0000 1.2 --- list.html.tmpl 15 Dec 2004 13:06:23 -0000 1.3 *************** *** 37,41 **** <tr [% "class=\"bz_private\"" IF attachment.isprivate %]> <td valign="top"> ! <a href="attachment.cgi?id=[% attachment.attachid %]&action=view">[% attachment.description FILTER html FILTER obsolete(attachment.isobsolete) %]</a> </td> --- 37,41 ---- <tr [% "class=\"bz_private\"" IF attachment.isprivate %]> <td valign="top"> ! <a href="attachment.cgi?id=[% attachment.attachid %]">[% attachment.description FILTER html FILTER obsolete(attachment.isobsolete) %]</a> </td> Index: edit.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment/edit.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** edit.html.tmpl 9 Dec 2004 23:16:14 -0000 1.3 --- edit.html.tmpl 15 Dec 2004 13:06:23 -0000 1.4 *************** *** 35,39 **** table.attachment_info th { text-align: right; vertical-align: top; } table.attachment_info td { text-align: left; vertical-align: top; } ! #noview { text-align: left; vertical-align: center; } table#flags th, table#flags td { font-size: small; vertical-align: baseline; text-align: left; } --- 35,39 ---- table.attachment_info th { text-align: right; vertical-align: top; } table.attachment_info td { text-align: left; vertical-align: top; } ! #noview { text-align: left; vertical-align: middle; } table#flags th, table#flags td { font-size: small; vertical-align: baseline; text-align: left; } *************** *** 248,254 **** <td width="75%"> <textarea id="editFrame" name="comment" style="height: 400px; width: 100%; display: none;" cols="80" wrap="soft"></textarea> ! <iframe id="viewFrame" src="attachment.cgi?id=[% attachid %]&action=view" style="height: 400px; width: 100%;"> <b>Vous ne pouvez pas voir la pièce jointe car votre navigateur ne gère pas les IFRAMEs. ! <a href="attachment.cgi?id=[% attachid %]&action=view">Voir les pièces jointés dans une page séparée</a>.</b> </iframe> <script type="application/x-javascript" language="JavaScript"> --- 248,254 ---- <td width="75%"> <textarea id="editFrame" name="comment" style="height: 400px; width: 100%; display: none;" cols="80" wrap="soft"></textarea> ! <iframe id="viewFrame" src="attachment.cgi?id=[% attachid %]" style="height: 400px; width: 100%;"> <b>Vous ne pouvez pas voir la pièce jointe car votre navigateur ne gère pas les IFRAMEs. ! <a href="attachment.cgi?id=[% attachid %]">Voir les pièces jointés dans une page séparée</a>.</b> </iframe> <script type="application/x-javascript" language="JavaScript"> *************** *** 277,282 **** </b></p> <p><b> ! <a href="attachment.cgi?id=[% attachid %]&action=view">Télécharger ! la pièce jointe</a>. </b></p> </td> --- 277,281 ---- </b></p> <p><b> ! <a href="attachment.cgi?id=[% attachid %]">Télécharger la pièce jointe</a>. </b></p> </td> |
From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:41
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default/bug/create Modified Files: create.html.tmpl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: create.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create/create.html.tmpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** create.html.tmpl 9 Dec 2004 23:16:15 -0000 1.5 --- create.html.tmpl 15 Dec 2004 13:06:24 -0000 1.6 *************** *** 46,50 **** // with the default component owner. var form = document.Create; ! assigned_to = form.assigned_to.value var index = -1; if (form.component.type == 'select-one') { --- 46,50 ---- // with the default component owner. var form = document.Create; ! var assigned_to = form.assigned_to.value var index = -1; if (form.component.type == 'select-one') { |
From: Emmanuel S. <se...@us...> - 2004-12-15 12:30:08
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10248/default/attachment Modified Files: diff-header.html.tmpl Log Message: Premiere partie de la maj vers 2.18rc3 Index: diff-header.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment/diff-header.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** diff-header.html.tmpl 29 Oct 2004 23:23:25 -0000 1.2 --- diff-header.html.tmpl 15 Dec 2004 12:29:51 -0000 1.3 *************** *** 26,32 **** [% title = BLOCK %] [% IF attachid %] ! Pièce jointe #[% attachid %] pour le [% terms.Bug %] #[% bugid %] [% ELSE %] ! Interdiff de #[% oldid %] et #[% newid %] pour le #[% terms.Bug %] #[% bugid %] [% END %] [% END %] --- 26,32 ---- [% title = BLOCK %] [% IF attachid %] ! Pièce jointe #[% attachid %] pour le [% terms.bug %] #[% bugid %] [% ELSE %] ! Interdiff de #[% oldid %] et #[% newid %] pour le #[% terms.bug %] #[% bugid %] [% END %] [% END %] *************** *** 34,53 **** [% style = BLOCK %] .file_head { - font-size: x-large; font-weight: bold; ! background-color: #d3d3d3; border: 1px solid black; width: 100%; } .file_collapse { display: none; } .section_head { width: 100%; ! font-weight: bold; ! background-color: #d3d3d3; border: 1px solid black; text-align: left; } table.file_table { table-layout: fixed; --- 34,61 ---- [% style = BLOCK %] .file_head { font-weight: bold; ! font-size: 1em; ! background-color: #c3c3c3; border: 1px solid black; width: 100%; } + + .file_head a { + text-decoration: none; + font-family: monospace; + font-size: 1.1em; + } + .file_collapse { display: none; } + .section_head { width: 100%; ! background-color: #f0f0f0; border: 1px solid black; text-align: left; } + table.file_table { table-layout: fixed; *************** *** 56,60 **** --- 64,71 ---- border-spacing: 0px; border-collapse: collapse; + /* draw border below last open context section in listing */ + border-bottom: 1px solid black; } + tbody.file td { border-left: 1px dashed black; *************** *** 62,65 **** --- 73,77 ---- width: 50%; } + tbody.file pre { display: inline; *************** *** 67,83 **** --- 79,100 ---- font-size: 0.9em; } + tbody.file pre:empty { display: block; height: 1em; } + .changed { background-color: lightblue; } + .added { background-color: lightgreen; } + .removed { background-color: #FFCC99; } + .warning { color: red *************** *** 187,206 **** [% onload = 'restore_all(); document.checkboxform.restore_indicator.checked = true' %] [% IF headers %] [% h1 = BLOCK %] [% IF attachid %] ! [% description FILTER html %] (#[% attachid %]) [% ELSE %] - [% USE url %] - [% old_url = url('attachment.cgi', action = 'diff', id = oldid) %] - [% new_url = url('attachment.cgi', action = 'diff', id = newid) %] Diff Entre ! <a href="[% old_url %]">[% old_desc FILTER html %]</a> ! (#[% oldid %]) et ! <a href="[% new_url %]">[% new_desc FILTER html %]</a> ! (#[% newid %]) [% END %] ! pour le <a href="show_bug.cgi?id=[% bugid %]">[% terms.Bug %] #[% bugid %]</a> [% END %] [% h2 = BLOCK %] --- 204,222 ---- [% onload = 'restore_all(); document.checkboxform.restore_indicator.checked = true' %] + [% BLOCK viewurl %]attachment.cgi?id=[% id %][% END %] + [% BLOCK editurl %][% PROCESS viewurl %]&action=edit[% END %] + [% BLOCK diffurl %][% PROCESS viewurl %]&action=diff[% END %] + [% IF headers %] [% h1 = BLOCK %] [% IF attachid %] ! Attachment #[% attachid %]: [% description FILTER html %] [% ELSE %] Diff Entre ! #[% oldid %]: <a href="[% PROCESS diffurl id=oldid %]">[% old_desc FILTER html %]</a> et ! #[% newid %]: <a href="[% PROCESS diffurl id=newid %]">[% new_desc FILTER html %]</a> [% END %] ! pour le <a href="show_bug.cgi?id=[% bugid %]">[% terms.bug %] #[% bugid %]</a> [% END %] [% h2 = BLOCK %] *************** *** 227,242 **** [%# HEADER %] [% IF headers %] ! [% USE url('attachment.cgi', id = attachid) %] ! <a href="[% url() %]">View</a> ! | <a href="[% url(action = 'edit') %]">Edit</a> ! [% USE url('attachment.cgi', id = attachid, context = context, ! collapsed = collapsed, headers = headers, ! action = 'diff') %] ! | <a href="[% url(format = 'raw') %]">Raw Unified</a> [% END %] [% IF other_patches %] [% IF headers %] |[%END%] Différences entre ! <form style="display: inline"> <select name="oldid"> [% FOREACH patch = other_patches %] --- 243,254 ---- [%# HEADER %] [% IF headers %] ! <a href="[% PROCESS viewurl id=attachid %]">Voir</a> ! | <a href="[% PROCESS editurl id=attachid %]">Modifier</a> ! | <a href="[% PROCESS diffurl id=attachid %]&context=[% context FILTER html %]&collapsed=[% collapsed FILTER html %]&headers=[% headers FILTER html %]&format=raw">Unifié Cru</a> [% END %] [% IF other_patches %] [% IF headers %] |[%END%] Différences entre ! <form style="display: inline" action=""> <select name="oldid"> [% FOREACH patch = other_patches %] *************** *** 256,266 **** [% ELSE %] [% IF headers %] ! [% USE url('attachment.cgi', newid = newid, oldid = oldid, action = 'interdiff') %] ! <a href="[% url(format = 'raw') %]">Raw Unified</a> ! [% IF attachid %] ! <br> ! [% ELSE %] ! | ! [% END %] [% END %] [% END %] --- 268,272 ---- [% ELSE %] [% IF headers %] ! <a href="attachment.cgi?oldid=[% oldid %]&newid=[% newid %]&action=interdiff&format=raw">Unifié Cru</a> | [% END %] [% END %] *************** *** 277,290 **** [% IF do_context %] | <span style='font-weight: bold'>Contexte :</span> [% IF context == "patch" %] (<strong>Patch</strong> / [% ELSE %] ! (<a href="[% url(context = '') %]">Patch</a> / [% END %] [% IF context == "file" %] <strong>Fichier</strong> / [% ELSE %] ! <a href="[% url(context = 'file') %]">Fichier</a> / [% END %] --- 283,297 ---- [% IF do_context %] + [%# only happens for normal viewing, not interdiff %] | <span style='font-weight: bold'>Contexte :</span> [% IF context == "patch" %] (<strong>Patch</strong> / [% ELSE %] ! (<a href="[% PROCESS diffurl id=attachid %]&headers=[% headers FILTER html %]">Patch</a> / [% END %] [% IF context == "file" %] <strong>Fichier</strong> / [% ELSE %] ! <a href="[% PROCESS diffurl id=attachid %]&headers=[% headers FILTER html %]&context=file">File</a> / [% END %] *************** *** 293,297 **** [% END %] [%# textbox for context %] ! <form style="display: inline"><input type="hidden" name="action" value="diff"><input type="hidden" name="id" value="[% attachid %]"><input type="hidden" name="collapsed" value="[% collapsed FILTER html %]"><input type="hidden" name="headers" value="[% headers FILTER html %]"><input type="text" name="context" value="[% context FILTER html %]" size="3"></form>) [% END %] --- 300,304 ---- [% END %] [%# textbox for context %] ! <form style="display: inline" action=""><input type="hidden" name="action" value="diff"><input type="hidden" name="id" value="[% attachid %]"><input type="hidden" name="collapsed" value="[% collapsed FILTER html %]"><input type="hidden" name="headers" value="[% headers FILTER html %]"><input type="text" name="context" value="[% context FILTER html %]" size="3"></form>) [% END %] *************** *** 309,316 **** [% END %] </h2> [% END %] [%# Restore Stuff %] ! <form name="checkboxform"> <input type="checkbox" name="restore_indicator" style="display: none"> --- 316,325 ---- [% END %] </h2> + [% ELSE %] + <br><br> [% END %] [%# Restore Stuff %] ! <form name="checkboxform" action=""> <input type="checkbox" name="restore_indicator" style="display: none"> |
From: Emmanuel S. <se...@us...> - 2004-12-15 12:30:08
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/admin/flag-type In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10248/default/admin/flag-type Modified Files: edit.html.tmpl Log Message: Premiere partie de la maj vers 2.18rc3 Index: edit.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/admin/flag-type/edit.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** edit.html.tmpl 29 Oct 2004 21:49:19 -0000 1.2 --- edit.html.tmpl 15 Dec 2004 12:29:50 -0000 1.3 *************** *** 119,134 **** [% END %] </select><br> ! <input type="submit" name="categoryAction" value="Include"> ! <input type="submit" name="categoryAction" value="Exclude"> </td> <td style="vertical-align: top;"> <b>Inclusions:</b><br> [% PROCESS "global/select-menu.html.tmpl" name="inclusion_to_remove" multiple="1" size="4" options=type.inclusions %]<br> ! <input type="submit" name="categoryAction" value="Remove Inclusion"> </td> <td style="vertical-align: top;"> <b>Exclusions:</b><br> [% PROCESS "global/select-menu.html.tmpl" name="exclusion_to_remove" multiple="1" size="4" options=type.exclusions %]<br> ! <input type="submit" name="categoryAction" value="Remove Exclusion"> </td> </tr> --- 119,134 ---- [% END %] </select><br> ! <input type="submit" name="categoryAction-include" value="Include"> ! <input type="submit" name="categoryAction-exclude" value="Exclude"> </td> <td style="vertical-align: top;"> <b>Inclusions:</b><br> [% PROCESS "global/select-menu.html.tmpl" name="inclusion_to_remove" multiple="1" size="4" options=type.inclusions %]<br> ! <input type="submit" name="categoryAction-removeInclusion" value="Remove Inclusion"> </td> <td style="vertical-align: top;"> <b>Exclusions:</b><br> [% PROCESS "global/select-menu.html.tmpl" name="exclusion_to_remove" multiple="1" size="4" options=type.exclusions %]<br> ! <input type="submit" name="categoryAction-removeExclusion" value="Remove Exclusion"> </td> </tr> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:17:01
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/votes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/bug/votes Modified Files: list-for-user.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: list-for-user.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/votes/list-for-user.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** list-for-user.html.tmpl 1 Nov 2004 10:27:00 -0000 1.2 --- list-for-user.html.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 47,51 **** <th>Votes</th> <th>[% terms.Bug %] #</th> ! <th>Sommaire</th> </tr> --- 47,51 ---- <th>Votes</th> <th>[% terms.Bug %] #</th> ! <th>Résumé</th> </tr> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:17:00
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/global Modified Files: field-descs.none.tmpl site-navigation.html.tmpl user-error.html.tmpl variables.none.tmpl Log Message: Les corrections d'un collegue (merci, Nico) 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** field-descs.none.tmpl 16 Nov 2004 00:25:30 -0000 1.2 --- field-descs.none.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 55,59 **** "reporter_accessible" => "Raporteur accessible ?", "resolution" => "Résolution", ! "short_desc" => "Sommaire", "status_whiteboard" => "Whiteboard", "target_milestone" => "Cible Jalon", --- 55,59 ---- "reporter_accessible" => "Raporteur accessible ?", "resolution" => "Résolution", ! "short_desc" => "Résumé", "status_whiteboard" => "Whiteboard", "target_milestone" => "Cible Jalon", 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.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** user-error.html.tmpl 16 Nov 2004 00:25:30 -0000 1.2 --- user-error.html.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 640,644 **** [% ELSIF error == "require_summary" %] ! [% title = "Sommaire Nécessaire" %] Vous devez donner un sommaire à ce [% terms.bug %]. --- 640,644 ---- [% ELSIF error == "require_summary" %] ! [% title = "Résumé Nécessaire" %] Vous devez donner un sommaire à ce [% terms.bug %]. Index: site-navigation.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/site-navigation.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** site-navigation.html.tmpl 16 Nov 2004 00:25:30 -0000 1.2 --- site-navigation.html.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 76,85 **** [% IF user.showmybugslink %] [% user_login = user.login FILTER url_quote %] ! <link rel="Saved Searches" title="My [% terms.Bugs %]" href="[% Param('mybugstemplate').replace('%userid%', user_login) %]"> [% END %] [% FOREACH q = user.queries %] ! <link rel="Saved Searches" title="[% q.name FILTER html %]" href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER url_quote %]"> --- 76,85 ---- [% IF user.showmybugslink %] [% user_login = user.login FILTER url_quote %] ! <link rel="Requêtes Sauvegardées" title="Mes [% terms.Bugs %]" href="[% Param('mybugstemplate').replace('%userid%', user_login) %]"> [% END %] [% FOREACH q = user.queries %] ! <link rel="Requêtes Sauvegardées" title="[% q.name FILTER html %]" href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER url_quote %]"> Index: variables.none.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/variables.none.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** variables.none.tmpl 16 Nov 2004 00:25:30 -0000 1.2 --- variables.none.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 37,41 **** "bugs" = "bugs", "Bugs" = "Bugs", ! "zeroSearchResults" = "Zarro Boogs found", "bit" = "bit", "bits" = "bits", --- 37,41 ---- "bugs" = "bugs", "Bugs" = "Bugs", ! "zeroSearchResults" = "Zarro Boogs trouvés", "bit" = "bit", "bits" = "bits", |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:59
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/bug Modified Files: knob.html.tmpl show-multiple.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: show-multiple.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/show-multiple.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** show-multiple.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- show-multiple.html.tmpl 9 Dec 2004 23:16:14 -0000 1.3 *************** *** 118,122 **** <tr> <td colspan="4"> ! <b>Sommaire :</b> [% bug.short_desc FILTER html %] </td> </tr> --- 118,122 ---- <tr> <td colspan="4"> ! <b>Résumé :</b> [% bug.short_desc FILTER html %] </td> </tr> Index: knob.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/knob.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** knob.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 --- knob.html.tmpl 9 Dec 2004 23:16:14 -0000 1.4 *************** *** 163,167 **** <a href="show_activity.cgi?id=[% bug.bug_id %]">Voir l'Activité du [% terms.Bug %]</a> | ! <a href="long_list.cgi?buglist=[% bug.bug_id %]">Formater Pour l'Impréssion</a> </b> </font> --- 163,167 ---- <a href="show_activity.cgi?id=[% bug.bug_id %]">Voir l'Activité du [% terms.Bug %]</a> | ! <a href="long_list.cgi?buglist=[% bug.bug_id %]">Formater Pour l'Impression</a> </b> </font> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:59
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/pages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/pages Modified Files: bug-writing.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: bug-writing.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/pages/bug-writing.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bug-writing.html.tmpl 20 Nov 2004 00:23:16 -0000 1.2 --- bug-writing.html.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 176,180 **** <blockquote> ! <p><b>Sommaire :</b> <b>Comment pourriez vous décrire le [% terms.bug %] en a peu près 60 caractères ou moins ?</b><br> Un bon sommaire doit <b>rapidement et de manière unique un rapport de --- 176,180 ---- <blockquote> ! <p><b>Résumé :</b> <b>Comment pourriez vous décrire le [% terms.bug %] en a peu près 60 caractères ou moins ?</b><br> Un bon sommaire doit <b>rapidement et de manière unique un rapport de *************** *** 336,340 **** </blockquote> ! <p><b><a name="summary"></a>2. Comment et Pourquoi Ãcrire de Bons Sommaires de [% terms.Bug %]</b></p> --- 336,340 ---- </blockquote> ! <p><b><a name="summary"></a>2. Comment et Pourquoi Ãcrire de Bons Résumés de [% terms.Bug %]</b></p> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:59
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/reports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/reports Modified Files: duplicates-table.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: duplicates-table.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/reports/duplicates-table.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** duplicates-table.html.tmpl 20 Nov 2004 00:54:08 -0000 1.2 --- duplicates-table.html.tmpl 9 Dec 2004 23:16:16 -0000 1.3 *************** *** 59,63 **** { name => "target_milestone", description => "Cible<br>Jalon" }, ! { name => "short_desc", description => "Sommaire" } ] %] --- 59,63 ---- { name => "target_milestone", description => "Cible<br>Jalon" }, ! { name => "short_desc", description => "Résumé" } ] %] |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:58
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/bug/create Modified Files: create-guided.html.tmpl create.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: create-guided.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create/create-guided.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** create-guided.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- create-guided.html.tmpl 9 Dec 2004 23:16:15 -0000 1.3 *************** *** 341,345 **** <tr bgcolor="[% tablecolour %]"> <td align="right" valign="middle"> ! <b>Sommaire</b> </td> <td valign="top"> --- 341,345 ---- <tr bgcolor="[% tablecolour %]"> <td align="right" valign="middle"> ! <b>Résumé</b> </td> <td valign="top"> *************** *** 368,372 **** <td valign="top"> <p> ! Dévelopez votre Sommaire. S'il vous plaît, soyez aussi détaillé sur ce qui se passe mal. </p> --- 368,372 ---- <td valign="top"> <p> ! Dévelopez votre Résumé. S'il vous plaît, soyez aussi détaillé sur ce qui se passe mal. </p> Index: create.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create/create.html.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** create.html.tmpl 9 Dec 2004 22:13:54 -0000 1.4 --- create.html.tmpl 9 Dec 2004 23:16:15 -0000 1.5 *************** *** 226,230 **** <tr> ! <td align="right"><strong>Sommaire :</strong></td> <td colspan="3"> <input name="short_desc" size="60" value="[% short_desc FILTER html %]"> --- 226,230 ---- <tr> ! <td align="right"><strong>Résumé :</strong></td> <td colspan="3"> <input name="short_desc" size="60" value="[% short_desc FILTER html %]"> *************** *** 308,312 **** <input type="submit" name="maketemplate" ! value="Souvenez vous de ces valeurs en tant que maquette pour marque-pages."> </td> </tr> --- 308,312 ---- <input type="submit" name="maketemplate" ! value="Souvenez-vous de ces valeurs en tant que maquette pour marque-pages."> </td> </tr> *************** *** 317,322 **** <td colspan="3"> <br> ! Nous avons éssayé de deviner votre système d'exploitation et plateforme. ! S'il vous plaît, vérifiez les et, si nous nous sommes trompés, envoyez un mail [%+ Param('maintainer') %]. </td> --- 317,322 ---- <td colspan="3"> <br> ! Nous avons essayé de deviner votre système d'exploitation et plateforme. ! S'il-vous-plaît, vérifiez-les et, si nous nous sommes trompés, envoyez un mail à [%+ Param('maintainer') %]. </td> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:53
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/attachment Modified Files: edit.html.tmpl show-multiple.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: edit.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment/edit.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** edit.html.tmpl 29 Oct 2004 23:23:25 -0000 1.2 --- edit.html.tmpl 9 Dec 2004 23:16:14 -0000 1.3 *************** *** 258,268 **** document.write('<iframe id="viewDiffFrame" style="height: 400px; width: 100%; display: none;"></iframe>'); [% END %] ! document.write('<button type="button" id="editButton" onclick="editAsComment();">Edit Attachment As Comment</button>'); ! document.write('<button type="button" id="undoEditButton" onclick="undoEditAsComment();" style="display: none;">Undo Edit As Comment</button>'); ! document.write('<button type="button" id="redoEditButton" onclick="redoEditAsComment();" style="display: none;">Redo Edit As Comment</button>'); [% IF patchviewerinstalled %] ! document.write('<button type="button" id="viewDiffButton" onclick="viewDiff();">View Attachment As Diff</button>'); [% END %] ! document.write('<button type="button" id="viewRawButton" onclick="viewRaw();" style="display: none;">View Attachment As Raw</button>'); } //--> --- 258,268 ---- document.write('<iframe id="viewDiffFrame" style="height: 400px; width: 100%; display: none;"></iframe>'); [% END %] ! document.write('<button type="button" id="editButton" onclick="editAsComment();">Modifier la Pièce Jointe en Tant que Commentaire</button>'); ! document.write('<button type="button" id="undoEditButton" onclick="undoEditAsComment();" style="display: none;">Annuler la Modification en Tant que Commentaire</button>'); ! document.write('<button type="button" id="redoEditButton" onclick="redoEditAsComment();" style="display: none;">Appliquer la Modification en Tant que Commentaire</button>'); [% IF patchviewerinstalled %] ! document.write('<button type="button" id="viewDiffButton" onclick="viewDiff();">Voir la Pièce Jointe en Tant que Diff</button>'); [% END %] ! document.write('<button type="button" id="viewRawButton" onclick="viewRaw();" style="display: none;">Voir la Pièce Jointe de Manière Crue</button>'); } //--> Index: show-multiple.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/attachment/show-multiple.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** show-multiple.html.tmpl 29 Oct 2004 23:23:25 -0000 1.2 --- show-multiple.html.tmpl 9 Dec 2004 23:16:14 -0000 1.3 *************** *** 79,83 **** <td valign="top"> ! <a href="attachment.cgi?id=[% a.attachid %]&action=edit">Edit</a> </td> </tr> --- 79,83 ---- <td valign="top"> ! <a href="attachment.cgi?id=[% a.attachid %]&action=edit">Modifier</a> </td> </tr> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:53
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/account/prefs Modified Files: prefs.html.tmpl saved-searches.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: saved-searches.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs/saved-searches.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** saved-searches.html.tmpl 9 Dec 2004 22:13:54 -0000 1.2 --- saved-searches.html.tmpl 9 Dec 2004 23:16:13 -0000 1.3 *************** *** 20,24 **** #%] ! <p>Bos requêtes sauvegardés sont tel que définis ici :</p> <blockquote> --- 20,24 ---- #%] ! <p>Vos requêtes sauvegardés sont tel que définis ici :</p> <blockquote> Index: prefs.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs/prefs.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** prefs.html.tmpl 30 Nov 2004 22:34:08 -0000 1.3 --- prefs.html.tmpl 9 Dec 2004 23:16:13 -0000 1.4 *************** *** 84,88 **** <p> <font color="red"> ! Vos changements pour [% current_tab.description FILTER lower %] ont été sauvegardés. </font> --- 84,88 ---- <p> <font color="red"> ! Vos changements pour [% current_tab.description FILTER lower %] ont été sauvegardés. </font> |
From: Emmanuel S. <se...@us...> - 2004-12-09 23:16:41
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2614/search Modified Files: search-advanced.html.tmpl Log Message: Les corrections d'un collegue (merci, Nico) Index: search-advanced.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/search/search-advanced.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** search-advanced.html.tmpl 25 Nov 2004 23:19:00 -0000 1.2 --- search-advanced.html.tmpl 9 Dec 2004 23:16:16 -0000 1.3 *************** *** 56,60 **** [% IF cgi.user_agent("Mozilla/5") %] <script type="text/javascript"> <!-- ! document.write("<p><a href='query.cgi?help=1'>Me donner de l'aide</a> (recharger la page.)</p>"); // --> </script> --- 56,60 ---- [% IF cgi.user_agent("Mozilla/5") %] <script type="text/javascript"> <!-- ! document.write("<p><a href='query.cgi?help=1'>Me donner de l'aide</a> (ceci va recharger la page.)</p>"); // --> </script> *************** *** 88,92 **** <p> ! Donnez moi un indice sur <a href="queryhelp.cgi">indice</a> sur l'utilisation de ce formulaire. </p> --- 88,92 ---- <p> ! Donnez moi un <a href="queryhelp.cgi">indice</a> sur l'utilisation de ce formulaire. </p> |
From: Emmanuel S. <se...@us...> - 2004-12-09 22:14:05
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21777/default/account/prefs Modified Files: saved-searches.html.tmpl Log Message: quelques coquilles Index: saved-searches.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs/saved-searches.html.tmpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** saved-searches.html.tmpl 6 Sep 2004 20:41:10 -0000 1.1.1.1 --- saved-searches.html.tmpl 9 Dec 2004 22:13:54 -0000 1.2 *************** *** 20,24 **** #%] ! <p>Your saved searches are as follows:</p> <blockquote> --- 20,24 ---- #%] ! <p>Bos requêtes sauvegardés sont tel que définis ici :</p> <blockquote> *************** *** 26,50 **** <tr> <th> ! Search </th> <th> ! Run </th> <th> ! Edit </th> <th> ! Forget </th> <th> ! Show in ! Footer </th> </tr> <tr> ! <td>My Bugs</td> <td> [% filtered_username = user.login FILTER url_quote %] ! <a href="[% Param('mybugstemplate').replace('%userid%', filtered_username) %]">Run</a> </td> <td> --- 26,50 ---- <tr> <th> ! Requête </th> <th> ! Lancer </th> <th> ! Modifier </th> <th> ! Oublier </th> <th> ! Montrer dans le ! pied de page </th> </tr> <tr> ! <td>Mes Bugs</td> <td> [% filtered_username = user.login FILTER url_quote %] ! <a href="[% Param('mybugstemplate').replace('%userid%', filtered_username) %]">Lancer</a> </td> <td> *************** *** 65,76 **** <td>[% q.name FILTER html %]</td> <td> ! <a href="buglist.cgi?[% q.query FILTER html %]">Run</a> </td> <td> ! <a href="query.cgi?[% q.query FILTER html %]">Edit</a> </td> <td> <a href="buglist.cgi?cmdtype=dorem&remaction=forget&namedcmd= ! [% q.name FILTER html %]">Forget</a> </td> <td align="center"> --- 65,76 ---- <td>[% q.name FILTER html %]</td> <td> ! <a href="buglist.cgi?[% q.query FILTER html %]">Lancer</a> </td> <td> ! <a href="query.cgi?[% q.query FILTER html %]">Modifier</a> </td> <td> <a href="buglist.cgi?cmdtype=dorem&remaction=forget&namedcmd= ! [% q.name FILTER html %]">Oublier</a> </td> <td align="center"> |
From: Emmanuel S. <se...@us...> - 2004-12-09 22:14:05
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21777/default/bug/create Modified Files: create.html.tmpl user-message.html.tmpl Log Message: quelques coquilles Index: create.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create/create.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** create.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 --- create.html.tmpl 9 Dec 2004 22:13:54 -0000 1.4 *************** *** 144,148 **** <tr> ! [% sel = { description => 'Platforme', name => 'rep_platform' } %] [% INCLUDE select %] --- 144,148 ---- <tr> ! [% sel = { description => 'Plateforme', name => 'rep_platform' } %] [% INCLUDE select %] Index: user-message.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create/user-message.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** user-message.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- user-message.html.tmpl 9 Dec 2004 22:13:54 -0000 1.3 *************** *** 31,35 **** [% PROCESS global/variables.none.tmpl %] ! Avant de rapporter [% terms.abug %], s'il vous plaît, lisez <a href="page.cgi?id=bug-writing.html"> guide d'écriture de [% terms.bug %]</a>, regardez la liste des --- 31,35 ---- [% PROCESS global/variables.none.tmpl %] ! Avant de rapporter [% terms.abug %], s'il vous plaît, lisez le <a href="page.cgi?id=bug-writing.html"> guide d'écriture de [% terms.bug %]</a>, regardez la liste des |
From: Emmanuel S. <se...@us...> - 2004-12-09 22:14:05
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21777/default/global Modified Files: useful-links.html.tmpl Log Message: quelques coquilles Index: useful-links.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/useful-links.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** useful-links.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 --- useful-links.html.tmpl 9 Dec 2004 22:13:54 -0000 1.4 *************** *** 92,96 **** <div class="label"> [% IF user.showmybugslink OR user.queries.size %] ! Saved Searches: [% END %] </div> --- 92,96 ---- <div class="label"> [% IF user.showmybugslink OR user.queries.size %] ! Requêtes Sauvegardées : [% END %] </div> |
From: Emmanuel S. <se...@us...> - 2004-11-30 23:29:48
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2826/global Modified Files: useful-links.html.tmpl Log Message: fautes de traductions Index: useful-links.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/global/useful-links.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** useful-links.html.tmpl 16 Nov 2004 00:25:30 -0000 1.2 --- useful-links.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 *************** *** 66,70 **** [% IF user.login %] <div id="links-edit"> ! <div class="label">Edit:</div> <div class="links"> --- 66,70 ---- [% IF user.login %] <div id="links-edit"> ! <div class="label">Modifier :</div> <div class="links"> |
From: Emmanuel S. <se...@us...> - 2004-11-30 23:29:48
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2826/bug/create Modified Files: create.html.tmpl Log Message: fautes de traductions Index: create.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/create/create.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** create.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- create.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 *************** *** 144,151 **** <tr> ! [% sel = { description => 'Platform', name => 'rep_platform' } %] [% INCLUDE select %] ! [% sel = { description => 'OS', name => 'op_sys' } %] [% INCLUDE select %] </tr> --- 144,151 ---- <tr> ! [% sel = { description => 'Platforme', name => 'rep_platform' } %] [% INCLUDE select %] ! [% sel = { description => 'SE', name => 'op_sys' } %] [% INCLUDE select %] </tr> *************** *** 153,157 **** <tr> [% IF Param('letsubmitterchoosepriority') %] ! [% sel = { description => 'Priority', name => 'priority' } %] [% INCLUDE select %] [% ELSE %] --- 153,157 ---- <tr> [% IF Param('letsubmitterchoosepriority') %] ! [% sel = { description => 'Priorité', name => 'priority' } %] [% INCLUDE select %] [% ELSE %] *************** *** 160,164 **** [% END %] ! [% sel = { description => 'Severity', name => 'bug_severity' } %] [% INCLUDE select %] </tr> --- 160,164 ---- [% END %] ! [% sel = { description => 'Severité', name => 'bug_severity' } %] [% INCLUDE select %] </tr> *************** *** 171,175 **** [% IF bug_status.size > 1 %] <tr> ! [% sel = { description => 'Initial State', name => 'bug_status' } %] [% INCLUDE select %] --- 171,175 ---- [% IF bug_status.size > 1 %] <tr> ! [% sel = { description => 'Ãtat Initial', name => 'bug_status' } %] [% INCLUDE select %] *************** *** 187,191 **** <input name="assigned_to" size="32" value="[% assigned_to FILTER html %]"> ! <noscript>(Leave blank to assign to default component owner)</noscript> </td> </tr> --- 187,191 ---- <input name="assigned_to" size="32" value="[% assigned_to FILTER html %]"> ! <noscript>(Laisser vide pour assigner au propriétaire par défaut du composant)</noscript> </td> </tr> *************** *** 302,306 **** <td></td> <td colspan="3"> ! <input type="submit" value=" Commit " onclick="if (this.form.short_desc.value == '') { alert('Remplissez une phrase de sommaire pour ce [% terms.bug %].'); --- 302,306 ---- <td></td> <td colspan="3"> ! <input type="submit" value=" Soumettre " onclick="if (this.form.short_desc.value == '') { alert('Remplissez une phrase de sommaire pour ce [% terms.bug %].'); *************** *** 318,322 **** <br> Nous avons éssayé de deviner votre système d'exploitation et plateforme. ! S'il vous plaît, vérifiez les et, si nous nous sommes trompés, mailez [%+ Param('maintainer') %]. </td> --- 318,322 ---- <br> Nous avons éssayé de deviner votre système d'exploitation et plateforme. ! S'il vous plaît, vérifiez les et, si nous nous sommes trompés, envoyez un mail [%+ Param('maintainer') %]. </td> |
From: Emmanuel S. <se...@us...> - 2004-11-30 23:29:48
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2826/list Modified Files: edit-multiple.html.tmpl Log Message: fautes de traductions Index: edit-multiple.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/edit-multiple.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** edit-multiple.html.tmpl 16 Nov 2004 22:02:22 -0000 1.2 --- edit-multiple.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 *************** *** 317,321 **** </label><br> ! <input type="submit" value="Commit"> [% IF ismover %] --- 317,321 ---- </label><br> ! <input type="submit" value="Soumettre"> [% IF ismover %] |
From: Emmanuel S. <se...@us...> - 2004-11-30 23:29:44
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2826/bug Modified Files: knob.html.tmpl Log Message: fautes de traductions Index: knob.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/knob.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** knob.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- knob.html.tmpl 30 Nov 2004 23:29:36 -0000 1.3 *************** *** 156,160 **** [% END %] ! <input type="submit" value="Commit"> <input type="hidden" name="form_name" value="process_bug"> <p> --- 156,160 ---- [% END %] ! <input type="submit" value="Soumettre"> <input type="hidden" name="form_name" value="process_bug"> <p> |
From: Emmanuel S. <se...@us...> - 2004-11-30 23:11:20
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31379 Modified Files: index.html.tmpl Log Message: Quelques mots non traduits Index: index.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/index.html.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.html.tmpl 30 Nov 2004 22:34:07 -0000 1.4 --- index.html.tmpl 30 Nov 2004 23:11:09 -0000 1.5 *************** *** 75,79 **** [% END %] </p><p> ! <a href="javascript:addSidebar()">Ajouter à la Sidebar</a> (Nécessite Mozilla ou Netscape 6)<br> </p> <form name="f" action="show_bug.cgi" method="get" --- 75,79 ---- [% END %] </p><p> ! <a href="javascript:addSidebar()">Ajouter à la Sidebar</a> (Nécessite Mozilla ou Netscape 6)<br> </p> <form name="f" action="show_bug.cgi" method="get" *************** *** 82,87 **** Entrer le numéro d'[% terms.abug %] ou certains termes de recherche :<br> <input type="text" name="id"> ! <input type="submit" value="Show"> ! <a href="quicksearch.html">[Help]</a> </p> </form> --- 82,87 ---- Entrer le numéro d'[% terms.abug %] ou certains termes de recherche :<br> <input type="text" name="id"> ! <input type="submit" value="Montrer"> ! <a href="quicksearch.html">[Aide]</a> </p> </form> |
From: Emmanuel S. <se...@us...> - 2004-11-30 23:01:58
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29327/account/prefs Modified Files: account.html.tmpl email.html.tmpl Log Message: encore des entites HTML Index: email.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs/email.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** email.html.tmpl 30 Nov 2004 22:34:08 -0000 1.3 --- email.html.tmpl 30 Nov 2004 23:01:46 -0000 1.4 *************** *** 49,53 **** Si vous voulez aider quelqu'un quand il est en vacances ou si vous avez besoin de faire l'Assurance Qualité pour tous ses [% terms.bugs %], vous pouvez dire ! à [%+ terms.Bugzilla %] de vous envoyer un mail pour tous ses [% terms.bugs %] et ce qui leur est relié. Listez les adresses e-mail de tous les utilisateurs que vous voulez surveiller ici, séparés par --- 49,53 ---- Si vous voulez aider quelqu'un quand il est en vacances ou si vous avez besoin de faire l'Assurance Qualité pour tous ses [% terms.bugs %], vous pouvez dire ! à [%+ terms.Bugzilla %] de vous envoyer un mail pour tous ses [% terms.bugs %] et ce qui leur est relié. Listez les adresses e-mail de tous les utilisateurs que vous voulez surveiller ici, séparés par *************** *** 57,61 **** <tr> ! <th align="right">Utilisateurs à surveiller :</th> <td> <input size="35" name="watchedusers" --- 57,61 ---- <tr> ! <th align="right">Utilisateurs à surveiller :</th> <td> <input size="35" name="watchedusers" *************** *** 71,75 **** changements "triviaux" de [% terms.bugs %], vous pouvez utiliser les règlages ci-dessous pour filtrer certaines ! (ou même toutes) des notifications. </p> </td> --- 71,75 ---- changements "triviaux" de [% terms.bugs %], vous pouvez utiliser les règlages ci-dessous pour filtrer certaines ! (ou même toutes) des notifications. </p> </td> *************** *** 145,149 **** <tr> <td colspan="[% useqacontact ? '5' : '4' %]" align="center" width="50%"> ! <b>Quand ma relation à ce [% terms.bug %] est :</b> </td> <td rowspan="2" width="50%"> --- 145,149 ---- <tr> <td colspan="[% useqacontact ? '5' : '4' %]" align="center" width="50%"> ! <b>Quand ma relation à ce [% terms.bug %] est :</b> </td> <td rowspan="2" width="50%"> *************** *** 161,165 **** [% IF useqacontact %] <td align="center" width="10%"> ! <b>Contact</b> </td> [% END %] --- 161,165 ---- [% IF useqacontact %] <td align="center" width="10%"> ! <b>Contact QA</b> </td> [% END %] *************** *** 168,172 **** </td> <td align="center" width="10%"> ! <b>Électeur</b> </td> </tr> --- 168,172 ---- </td> <td align="center" width="10%"> ! <b>Ãlecteur</b> </td> </tr> Index: account.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/account/prefs/account.html.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** account.html.tmpl 30 Nov 2004 22:57:45 -0000 1.4 --- account.html.tmpl 30 Nov 2004 23:01:46 -0000 1.5 *************** *** 53,57 **** <tr> ! <th align="right">Entrez à nouveau votre nouveau mot de passe :</th> <td> <input type="password" name="new_password2"> --- 53,57 ---- <tr> ! <th align="right">Entrez à nouveau votre nouveau mot de passe :</th> <td> <input type="password" name="new_password2"> *************** *** 74,78 **** </tr> <tr> ! <th align="right">Expiration de la requête de changement :</th> <td>[% login_change_date FILTER time %]</td> </tr> --- 74,78 ---- </tr> <tr> ! <th align="right">Expiration de la requête de changement :</th> <td>[% login_change_date FILTER time %]</td> </tr> |