diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-03-23 13:58:46 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-03-23 13:58:46 +0100 |
commit | 4a1426934968384d10a38f335a1c0c49b058dc2d (patch) | |
tree | df39adcc6b7dfae28e6f2c43c6b21f5591dbe52e /boot.php | |
parent | 894e88d792aaa226b9f54c40734fb9aaf3929f8e (diff) | |
download | volse-hubzilla-4a1426934968384d10a38f335a1c0c49b058dc2d.tar.gz volse-hubzilla-4a1426934968384d10a38f335a1c0c49b058dc2d.tar.bz2 volse-hubzilla-4a1426934968384d10a38f335a1c0c49b058dc2d.zip |
Added plural string for contact block
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2013,7 +2013,7 @@ function contact_block() { intval($shown) ); if(count($r)) { - $o .= '<h4 class="contact-h4">' . $total . ' ' . t('Contacts') . '</h4><div id="contact-block">'; + $o .= '<h4 class="contact-h4">' . sprintf(tt('%d Contact','%d Contacts', $total),$total) . '</h4><div id="contact-block">'; foreach($r as $rr) { $redirect_url = $a->get_baseurl() . '/redir/' . $rr['id']; if(local_user() && ($rr['uid'] == local_user()) @@ -2659,4 +2659,4 @@ function extract_item_authors($arr,$uid) { } } return array(); -}}
\ No newline at end of file +}} |