diff options
-rw-r--r-- | Zotlabs/Widget/Activity_filter.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zotlabs/Widget/Activity_filter.php b/Zotlabs/Widget/Activity_filter.php index 18d81d8e3..32da20bf6 100644 --- a/Zotlabs/Widget/Activity_filter.php +++ b/Zotlabs/Widget/Activity_filter.php @@ -69,7 +69,7 @@ class Activity_filter { 'icon' => 'users', 'url' => '#', 'sel' => (($filter_active == 'group') ? true : false), - 'title' => sprintf(t('Show posts that I have filed to %s'), $t['term']), + 'title' => t('Show my privacy groups'), 'sub' => $gsub ]; @@ -93,7 +93,7 @@ class Activity_filter { 'icon' => '', 'url' => z_root() . '/' . $cmd . '/?f=&file=' . $t['term'], 'sel' => $file_active, - 'title' => '' + 'title' => sprintf(t('Show posts that I have filed to %s'), $t['term']), ]; } @@ -103,7 +103,7 @@ class Activity_filter { 'icon' => 'folder', 'url' => '#', 'sel' => (($filter_active == 'file') ? true : false), - 'title' => sprintf(t('Show posts that I have filed to %s'), $t['term']), + 'title' => t('Show filed post categories'), 'sub' => $tsub ]; @@ -124,7 +124,7 @@ class Activity_filter { 'img' => $f['xchan_photo_s'], 'url' => (($f['private_forum']) ? $f['xchan_url'] : z_root() . '/' . $cmd . '/?f=&pf=1&cid=' . $f['abook_id']), 'sel' => $forum_active, - 'title' => t('Private forum'), + 'title' => t('Show posts to this forum'), 'lock' => (($f['private_forum']) ? 'lock' : '') ]; } @@ -135,7 +135,7 @@ class Activity_filter { 'icon' => 'comments-o', 'url' => '#', 'sel' => (($filter_active == 'forums') ? true : false), - 'title' => t('Show this forums posts'), + 'title' => t('Show forums'), 'sub' => $fsub ]; |