aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-01-21 11:48:10 +0100
committerMario Vavti <mario@mariovavti.com>2016-01-21 11:48:10 +0100
commitb711c050db39bd733f4a48cbe575b9e926aa3d0d (patch)
tree203ec54b2bbe4e5d1fe77098f4fbc46c85422ec4 /include
parent928f1bfa7bdaa4f8a85ea4bec6ebcb182975f158 (diff)
downloadvolse-hubzilla-b711c050db39bd733f4a48cbe575b9e926aa3d0d.tar.gz
volse-hubzilla-b711c050db39bd733f4a48cbe575b9e926aa3d0d.tar.bz2
volse-hubzilla-b711c050db39bd733f4a48cbe575b9e926aa3d0d.zip
make contact block look widget alike
Diffstat (limited to 'include')
-rw-r--r--include/text.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php
index 6f7297bb0..a03648081 100644
--- a/include/text.php
+++ b/include/text.php
@@ -812,7 +812,7 @@ function contact_block() {
);
if(count($r)) {
- $contacts = sprintf( tt('%d Connection','%d Connections', $total),$total);
+ $contacts = t('Connections');
$micropro = Array();
foreach($r as $rr) {
$rr['archived'] = (intval($rr['abook_archived']) ? true : false);
@@ -825,7 +825,7 @@ function contact_block() {
$o = replace_macros($tpl, array(
'$contacts' => $contacts,
'$nickname' => $a->profile['channel_address'],
- '$viewconnections' => t('View Connections'),
+ '$viewconnections' => (($total > $shown) ? sprintf(t('View all %s connections'),$total) : ''),
'$micropro' => $micropro,
));