It looks like it would need to be passed from this file "search.php" in zpArdoise, correct?
`
<?php printf(ngettext('%1$u Hit for [i]%2$s[/i]', '%1$u Hits for [i]%2$s[/i]', $total), $total, html_encode($searchwords)); ?>
<?php if ($total == 0 ) { ?>
<?php echo gettext("Sorry, no matches found. Try refining your search."); ?>
<?php } ?>
<?php
if (getOption('search_no_albums')) {
if ($numimages > 0) {
echo'<ul class="search-item">[*]'; printf(gettext('Images (%s)'), $numimages); echo'</ul>';
}
} else {
if (getOption('search_no_images')) {
if ($numalbums > 0) {
echo'<ul class="search-item">[*]'; printf(gettext('Albums (%s)'), $numalbums); echo'</ul>';
}
} else {
if ($total1 > 0) {
echo'<ul class="search-item">[*]'; printf(gettext('Albums (%1$s) & Images (%2$s)'), $numalbums, $numimages); echo'</ul>';
}
}
}
?>
<?php if (function_exists('printSlideShowLink')) { ?>
<div class="control-nav">
<div class="control-slide">
<?php printSlideShowLink(gettext('Slideshow')); ?>
</div>
<?php } ?>
<?php printPageListWithNav(' « ', ' » ', false, true, 'clearfix', NULL, true, 7); ?>
<?php
if (getNumAlbums() > 0) {
include('inc_print_album_thumb.php');
}
if (getNumImages() > 0) {
include('inc_print_image_thumb.php');
}
?>
`