aboutsummaryrefslogtreecommitdiffstats
path: root/mod/directory.php
diff options
context:
space:
mode:
authorOlivier Migeot <olivier@migeot.org>2011-03-28 12:11:10 +0200
committerOlivier Migeot <olivier@migeot.org>2011-03-28 12:11:10 +0200
commitda546588db1863dd240a4c738644372fc4d183e6 (patch)
treedd6c869207098867aa6c7207f29ab5a2e9b6dc69 /mod/directory.php
parent19d7e7fefeb3d20697d6a7e0b1fc7a16d9127c64 (diff)
parent1f6c6c466a449ba422c4e67744577f6c35b3ce0b (diff)
downloadvolse-hubzilla-da546588db1863dd240a4c738644372fc4d183e6.tar.gz
volse-hubzilla-da546588db1863dd240a4c738644372fc4d183e6.tar.bz2
volse-hubzilla-da546588db1863dd240a4c738644372fc4d183e6.zip
Merge remote branch 'mike/master'
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