Libellés

This commit is contained in:
Fred Tempez 2020-08-20 12:14:36 +02:00
parent f25b27eae0
commit b3a094c4ee
2 changed files with 3 additions and 3 deletions

View File

@ -226,7 +226,7 @@ class search extends common {
$t = preg_replace($motclef, '<span class="searchKeyword">\1</span>',$t);
// Sauver résultat
$resultat .= '<p class="searchResult">'.$t.'...</p>';
$resultat .= '<p class="searchTitle">'.count($matches[0]) . (count($matches[0]) === 1 ? ' occurence<p>' : ' occurences<p>');
$resultat .= '<p class="searchTitle">'.count($matches[0]) . (count($matches[0]) === 1 ? ' correspondance<p>' : ' correspondances<p>');
//}
return ([
'matches' => count($matches[0]),

View File

@ -21,7 +21,7 @@
<?php echo template::text('searchKeywordColor', [
'class' => 'colorPicker',
'help' => ' Cette couleur est commune à tous les modules de recherche. Le curseur horizontal règle le niveau de transparence.',
'label' => 'Mot-clef en évidence.',
'label' => 'Surlignement',
'value' => $this->getData(['theme', 'search', 'keywordColor'])
]); ?>
</div>
@ -34,7 +34,7 @@
<div class="col6">
<?php echo template::text('searchPlaceHolder', [
'label' => 'Aide dans la zone de saisie',
'value' => $this->getData(['module', $this->getUrl(0), 'placeHolder']) ? $this->getData(['module', $this->getUrl(0), 'placeHolder']) : 'Un plusieurs mots-clés séparés par un espace ou par +'
'value' => $this->getData(['module', $this->getUrl(0), 'placeHolder']) ? $this->getData(['module', $this->getUrl(0), 'placeHolder']) : 'Un ou plusieurs mots-clés séparés par un espace ou par +'
]); ?>
</div>
</div>