diff options
author | zotlabs <mike@macgirvin.com> | 2018-06-03 23:38:03 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-06-03 23:38:03 -0700 |
commit | 5a9e6c8a695f0adac35baf2d63f58fb27424140f (patch) | |
tree | caf04176256b82c910b395a67769f5251601efab | |
parent | 57231a88076289c5dbeff70c9b92dbbe2bcefd8d (diff) | |
download | volse-hubzilla-5a9e6c8a695f0adac35baf2d63f58fb27424140f.tar.gz volse-hubzilla-5a9e6c8a695f0adac35baf2d63f58fb27424140f.tar.bz2 volse-hubzilla-5a9e6c8a695f0adac35baf2d63f58fb27424140f.zip |
sort out some mismatched hovertips on the activity filter
-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 ]; |