aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Activity_order.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-05-31 13:13:46 +0200
committerMario Vavti <mario@mariovavti.com>2018-05-31 13:13:46 +0200
commit7e8c7f86f0d103dbffa0ee4fc7538d89a0925a15 (patch)
tree4cb1bd5e16a2e651157ae3be430076c0bd21ab0d /Zotlabs/Widget/Activity_order.php
parentb438ffead455df7935c8423ed668cb1c2367fe47 (diff)
downloadvolse-hubzilla-7e8c7f86f0d103dbffa0ee4fc7538d89a0925a15.tar.gz
volse-hubzilla-7e8c7f86f0d103dbffa0ee4fc7538d89a0925a15.tar.bz2
volse-hubzilla-7e8c7f86f0d103dbffa0ee4fc7538d89a0925a15.zip
change some strings
Diffstat (limited to 'Zotlabs/Widget/Activity_order.php')
-rw-r--r--Zotlabs/Widget/Activity_order.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Widget/Activity_order.php b/Zotlabs/Widget/Activity_order.php
index c973e3809..10ec142d9 100644
--- a/Zotlabs/Widget/Activity_order.php
+++ b/Zotlabs/Widget/Activity_order.php
@@ -86,19 +86,19 @@ class Activity_order {
'label' => t('Commented Date'),
'url'=>z_root() . '/' . $cmd . '?f=&order=comment' . $filter,
'sel'=> $commentord_active,
- 'title' => t('Sort by Comment Date'),
+ 'title' => t('Order by last commented date'),
];
$tabs[] = [
'label' => t('Posted Date'),
'url'=>z_root() . '/' . $cmd . '?f=&order=post' . $filter,
'sel'=> $postord_active,
- 'title' => t('Sort by Post Date'),
+ 'title' => t('Order by last posted date'),
];
$tabs[] = array(
'label' => t('Date Unthreaded'),
'url' => z_root() . '/' . $cmd . '?f=&order=unthreaded' . $filter,
'sel' => $unthreaded_active,
- 'title' => t('Activity Stream - by date'),
+ 'title' => t('Order unthreaded by date'),
);
$arr = ['tabs' => $tabs];
@@ -109,7 +109,7 @@ class Activity_order {
if($arr['tabs']) {
return replace_macros($tpl, [
- '$title' => t('Order Activity by'),
+ '$title' => t('Activity Order'),
'$tabs' => $arr['tabs'],
]);
}