diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-24 15:57:59 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-24 15:57:59 -0700 |
commit | 52e38d7c24d9e2517e4691a0f2548a695e7806da (patch) | |
tree | 8d26042faa5892459811bc27bb05f2eab194ae78 /mod/search.php | |
parent | 7f9e4d6add614563242db41e2fe2eee371c7a35f (diff) | |
download | volse-hubzilla-52e38d7c24d9e2517e4691a0f2548a695e7806da.tar.gz volse-hubzilla-52e38d7c24d9e2517e4691a0f2548a695e7806da.tar.bz2 volse-hubzilla-52e38d7c24d9e2517e4691a0f2548a695e7806da.zip |
search result heading not translatable
Diffstat (limited to 'mod/search.php')
-rw-r--r-- | mod/search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/search.php b/mod/search.php index 6d79f5eee..28d6c7697 100644 --- a/mod/search.php +++ b/mod/search.php @@ -203,9 +203,9 @@ function search_content(&$a,$update = 0, $load = false) { } if($tag) - $o .= '<h2>Items tagged with: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>'; + $o .= '<h2>' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>'; else - $o .= '<h2>Search results for: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>'; + $o .= '<h2>' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>'; $o .= conversation($a,$items,'search',$update,'client'); |