Merge pull request #1603 from rabuzarus/translation

make the heading of the search result translatable
This commit is contained in:
fabrixxm 2015-05-27 11:06:24 +02:00
commit ab667dde41
1 changed files with 2 additions and 2 deletions

View File

@ -177,9 +177,9 @@ function search_content(&$a) {
if($tag)
$o .= '<h2>Items tagged with: ' . $search . '</h2>';
$o .= '<h2>' . sprintf( t('Items tagged with: %s'), $search) . '</h2>';
else
$o .= '<h2>Search results for: ' . $search . '</h2>';
$o .= '<h2>' . sprintf( t('Search results for: %s'), $search) . '</h2>';
logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
$o .= conversation($a,$r,'search',false);