Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 55 → Rev 56

/trunk/i18n/fr.ini
21,8 → 21,9
 
[Recherche-form-nom]
legende = "Consultation nomenclaturale"
ns = "Nom scientifique"
nv = "Nom vernaculaire"
nom = "Nom"
ns = "scientifique"
nv = "vernaculaire"
recherche = "Rechercher"
fiche = "Accès fiche"
referentiel = "Référentiels"
/trunk/modules/recherche_simple/squelettes/form_nom.tpl.html
5,25 → 5,26
<table>
<tr>
<td>
<label for="eflore_nom"><?=($eflore_type_nom == 'nom_scientifique') ? $i18n['ns'] : $i18n['nv'];?></label>
<input id="eflore_nom" name="eflore_nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" <?php if(isset($nom)) echo 'value="'.$nom.'"';?> />
</td>
<td>
<label for="nom"><?=$i18n['nom'];?></label>
</td><td>
<ul>
<li>
<input id="eflore_type_nom_scientifique" name="eflore_type_nom" value="nom_scientifique" type="radio" <?=($eflore_type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
<label for="eflore_type_nom_scientifique"><?=$i18n['ns'];?></label>
<input id="type_nom_scientifique" name="type_nom" value="nom_scientifique" type="radio" <?=($type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
<label for="type_nom_scientifique"><?=$i18n['ns'];?></label>
</li>
<li>
<input id="eflore_type_nom_vernaculaire" name="eflore_type_nom" value="nom_vernaculaire" type="radio" <?=($eflore_type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
<label for="eflore_type_nom_vernaculaire" title="(en fran�ais, allemand, anglais, catalan, espagnol, italien ou n�erlandais)"><?=$i18n['nv'];?></label>
<input id="type_nom_vernaculaire" name="type_nom" value="nom_vernaculaire" type="radio" <?=($type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
<label for="type_nom_vernaculaire" title="(en fran�ais, allemand, anglais, catalan, espagnol, italien ou n�erlandais)"><?=$i18n['nv'];?></label>
</li>
</ul>
</td><td>
<input id="nom" name="nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" <?php if(isset($nom)) echo 'value="'.$nom.'"';?> />
</td>
 
<td>
<input id="referentiel" name="referentiel" type="hidden" value="<?=Registre::get('parametres.referentiel')?>" />
<input id="module" name="module" type="hidden" value="recherche-simple" />
<input id="action" name="action" type="hidden" value="rechercheNom" />
<input id="action" name="action" type="hidden" value="rechercheNom" />
<input id="eflore_nomenclature_submit" type="submit" value="<?=$i18n['recherche'];?>" />
</td>
</tr>
32,7 → 33,7
</form>
 
<?php if (isset($nom_approche)) : ?>
<p id="efr-ortho-approche"> <span class="erreur"><?=$i18n['orthographe'];?></span><a href="<?=$nom_approche;?>"><?=$nom_approche;?></a></p>
<p id="efr-ortho-approche"> <span class="erreur"><?=$i18n['orthographe'];?></span><a href="<?=$url_nom_approche;?>"><?=$nom_approche;?></a></p>
<?php endif; ?>
<?php if (isset($information)) : ?>
<p id="information"><?=$information?></p>