fixing misplaced apostrophe
[koha_fer] / koha-tmpl / intranet-tmpl / prog / fr / modules / tools / printerConfig.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-barcodes.inc" -->
2
3         <h1>Configuration imprimante</h1>
4         <h3>Sélectionner la configuration d'imprimante correspondant à votre environnement</h3>
5         <ul>
6                 <li>Entrez la hauteur et la largeur des étiquettes que vous allez utiliser</li>
7                 <li>Entrez la définition (DPI) par défaut</li>
8                 <li>Déterminez le type de page.</li>
9                 <li>Entrez le nombre de colonnes et de lignes dans votre page</li>
10                 <li>Définissez les marges gauches et basses pour la page que vous souhaitez utiliser. Ces paramètres aideront à centrer les codes barres sur les étiquettes.</li>
11         </ul>
12         <br />
13         <form id="formulario" method="post" action="<!-- TMPL_VAR NAME="SCRIPT_NAME" -->" name="form1">
14                 <input type="hidden" name="saveSettings" value="1" />
15                 <table>
16                         <tr>
17                                 <th scope="row">
18                                         Largeur étiquette (en mm)
19                                 </th><td> 
20                                         <input id="labelWidth" type="text" name="labelWidth" size="5" value="<!-- TMPL_VAR NAME="LABEL_WIDTH" -->">
21                                 </td></tr>
22                                 <th scope="row">
23                                         Hauteur étiquette (en mm)
24                                 </th><td> 
25                                         <input id="labelHeigth" type="text" name="labelHeigth" size="5" value="<!-- TMPL_VAR NAME="LABEL_HEIGTH" -->">
26                                 </td></tr>
27                                 <th scope="row">
28                                         Système DPI
29                                 </th><td>
30                                         <input id="systemDpi" type="text" name="systemDpi" size="5" value="<!-- TMPL_VAR NAME="SYSTEM_DPI" -->">
31                                 </td></tr>
32                                 <th scope="row">
33                                         Type de page
34                                 </th>   <td>
35                                         <select name="pageType" id="pageType" size="1">
36                                                 <!-- TMPL_IF name="A4" -->
37                                                         <option value="A4" selected="selected">A4</option>
38                                         <!-- TMPL_ELSE -->
39                                                         <option value="A4">A4</option>
40                                                 <!-- /TMPL_IF -->
41                                                 <!-- TMPL_IF name="Letter" -->
42                                                         <option value="Letter" selected="selected">Lettre</option>
43                                         <!-- TMPL_ELSE -->
44                                                         <option value="Letter">Lettre</option>
45                                                 <!-- /TMPL_IF -->
46                                                 <!-- TMPL_IF name="Legal" -->
47                                                         <option value="Legal" selected="selected">Légal</option>
48                                         <!-- TMPL_ELSE -->
49                                                         <option value="Legal">Légal</option>
50                                                 <!-- /TMPL_IF -->    </select>
51                                 </td></tr>
52                                 <th scope="row">
53                                         Colonnes
54                                 </th>  <td>
55                                         <input id="columns" type="text" name="columns" size="5" value="<!-- TMPL_VAR NAME="COLUMNS" -->">
56                                 </td></tr>
57                                 <th scope="row">
58                                         Lignes
59                                 </th>   <td>
60                                         <input id="rows" type="text" name="rows" size="5" value="<!-- TMPL_VAR NAME="ROWS" -->">
61                                 </td></tr>
62                                 <th scope="row">
63                                         Marge basse (en mm)
64                                 </th>   <td>
65                                         <input id="marginBottom" type="text" name="marginBottom" size="5" value="<!-- TMPL_VAR NAME="MARGIN_TOP" -->">
66                                 </td></tr>
67                                 <th scope="row">
68                                         Marge gauche (en mm)
69                                 </th>   <td>
70                                         <input id="marginLeft" type="text" name="marginLeft" size="5" value="<!-- TMPL_VAR NAME="MARGIN_LEFT" -->">
71                                 </td></tr>
72                         </table><input type="submit" value="Valider les réglages">
73         </form>
74
75 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->