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 | |
parent | 7f9e4d6add614563242db41e2fe2eee371c7a35f (diff) | |
download | volse-hubzilla-52e38d7c24d9e2517e4691a0f2548a695e7806da.tar.gz volse-hubzilla-52e38d7c24d9e2517e4691a0f2548a695e7806da.tar.bz2 volse-hubzilla-52e38d7c24d9e2517e4691a0f2548a695e7806da.zip |
search result heading not translatable
-rw-r--r-- | mod/search.php | 4 | ||||
-rw-r--r-- | version.inc | 2 |
2 files changed, 3 insertions, 3 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'); diff --git a/version.inc b/version.inc index 889588612..3f9529176 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-05-23.1041 +2015-05-24.1042 |