aboutsummaryrefslogtreecommitdiffstats
path: root/mod/directory.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-22 16:34:12 -0700
committerFriendika <info@friendika.com>2011-03-22 16:34:12 -0700
commite0202d82a1e33dc2c2ed5b8fcec46440cc905d3f (patch)
tree09eed96c46fd65feac695d806121d037012546a9 /mod/directory.php
parent8f31935b7da523ba03b51459d7596fc5e6eb2854 (diff)
downloadvolse-hubzilla-e0202d82a1e33dc2c2ed5b8fcec46440cc905d3f.tar.gz
volse-hubzilla-e0202d82a1e33dc2c2ed5b8fcec46440cc905d3f.tar.bz2
volse-hubzilla-e0202d82a1e33dc2c2ed5b8fcec46440cc905d3f.zip
add fulltext index on keywords, missed some directory localisations
Diffstat (limited to 'mod/directory.php')
-rw-r--r--mod/directory.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/directory.php b/mod/directory.php
index 825e2a375..72c30fb31 100644
--- a/mod/directory.php
+++ b/mod/directory.php
@@ -86,10 +86,10 @@ function directory_content(&$a) {
}
if(strlen($rr['dob'])) {
if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
- $details .= "<br />Age: $years" ;
+ $details .= '<br />' . t('Age: ') . $years ;
}
if(strlen($rr['gender']))
- $details .= '<br />Gender: ' . $rr['gender'];
+ $details .= '<br />' . t('Gender: ') . $rr['gender'];
$entry = replace_macros($tpl,array(
'$id' => $rr['id'],
@@ -115,7 +115,7 @@ function directory_content(&$a) {
}
else
- notice("No entries (some entries may be hidden).");
+ notice( t("No entries \x28some entries may be hidden\x29.") . EOL);
return $o;
} \ No newline at end of file