aboutsummaryrefslogtreecommitdiffstats
path: root/include/datetime.php
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2012-02-12 18:56:53 -0800
committerAbinoam P. Marques Jr <abinoam@gmail.com>2012-02-12 18:56:53 -0800
commit9697e8233182bc084fb614b2c997b6e0c89c2441 (patch)
treecc5fc682ea9b8eeefe6fbbab2b7ffb0fedeb4f75 /include/datetime.php
parent135005571f4cfe3170b2f2ce0ea94b39a75c111a (diff)
parent3e85c1d3304c51489249ce2a284910885a1a3c73 (diff)
downloadvolse-hubzilla-9697e8233182bc084fb614b2c997b6e0c89c2441.tar.gz
volse-hubzilla-9697e8233182bc084fb614b2c997b6e0c89c2441.tar.bz2
volse-hubzilla-9697e8233182bc084fb614b2c997b6e0c89c2441.zip
Merge branch 'master' into bbcode
Diffstat (limited to 'include/datetime.php')
-rwxr-xr-xinclude/datetime.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/datetime.php b/include/datetime.php
index d44e995cf..6d395fe3f 100755
--- a/include/datetime.php
+++ b/include/datetime.php
@@ -260,10 +260,11 @@ function relative_date($posted_date) {
);
foreach ($a as $secs => $str) {
- $d = $etime / $secs;
- if ($d >= 1) {
- $r = round($d);
- return $r . ' ' . (($r == 1) ? $str[0] : $str[1]) . t(' ago');
+ $d = $etime / $secs;
+ if ($d >= 1) {
+ $r = round($d);
+ // translators - e.g. 22 hours ago, 1 minute ago
+ return sprintf( t('%1$d %2$s ago'),$r, (($r == 1) ? $str[0] : $str[1]));
}
}
}}