]> git.mxchange.org Git - friendica.git/commitdiff
make the heading of the search result translatable
authorrabuzarus <>
Sun, 24 May 2015 18:46:40 +0000 (20:46 +0200)
committerrabuzarus <>
Sun, 24 May 2015 18:46:40 +0000 (20:46 +0200)
mod/search.php

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