updating french translation
[koha.git] / koha-tmpl / intranet-tmpl / prog / fr / modules / catalogue / suggest.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Suggestions</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5         <table>
6         <caption>Recherche catalogue</caption>
7             <tr>
8                 <th>Mot de début</th>
9                 <th>Suggéré</th>
10                 <th>Utilisé X fois</th>
11             </tr>
12         <!-- TMPL_LOOP NAME="loop" -->
13             <tr>
14                 <td><!-- TMPL_VAR NAME="word" --></td>
15                 <td><a href="javascript:Import('<!-- TMPL_VAR NAME="word" -->','<!-- TMPL_VAR NAME="suggestion" -->')">
16                         <!-- TMPL_VAR NAME="suggestion" -->
17                     </a></td>
18                 <td><!-- TMPL_VAR NAME="count" --></td>
19             </tr>
20         <!-- /TMPL_LOOP -->
21         </table>
22
23 <script language="javascript" type="text/javascript">
24     function Import(Replaced,ReplaceBy) {
25         for (i=0 ; i<opener.document.f.value.length ; i++) {
26                 opener.document.forms['f'].value[i].value = opener.document.forms['f'].value[i].value.replace(Replaced,ReplaceBy);
27 //            if (document.forms[0].kohafield[i].value == "biblioitems.isbn" && document.forms[0].field_value[i].value.length>0) {
28 //                strQuery += "&isbn="+document.forms[0].field_value[i].value;
29 //            }
30 //            opener.document.location= "../cataloguing/addbiblio.pl?z3950=1&oldbiblionumber=<!-- TMPL_VAR NAME="oldbiblionumber" -->&breedingid="+GetThisOne;
31 //            self.close();
32 //            return false;
33         }
34     }
35 </script>
36
37 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
38