change some strings
This commit is contained in:
parent
b438ffead4
commit
7e8c7f86f0
@ -86,19 +86,19 @@ class Activity_order {
|
|||||||
'label' => t('Commented Date'),
|
'label' => t('Commented Date'),
|
||||||
'url'=>z_root() . '/' . $cmd . '?f=&order=comment' . $filter,
|
'url'=>z_root() . '/' . $cmd . '?f=&order=comment' . $filter,
|
||||||
'sel'=> $commentord_active,
|
'sel'=> $commentord_active,
|
||||||
'title' => t('Sort by Comment Date'),
|
'title' => t('Order by last commented date'),
|
||||||
];
|
];
|
||||||
$tabs[] = [
|
$tabs[] = [
|
||||||
'label' => t('Posted Date'),
|
'label' => t('Posted Date'),
|
||||||
'url'=>z_root() . '/' . $cmd . '?f=&order=post' . $filter,
|
'url'=>z_root() . '/' . $cmd . '?f=&order=post' . $filter,
|
||||||
'sel'=> $postord_active,
|
'sel'=> $postord_active,
|
||||||
'title' => t('Sort by Post Date'),
|
'title' => t('Order by last posted date'),
|
||||||
];
|
];
|
||||||
$tabs[] = array(
|
$tabs[] = array(
|
||||||
'label' => t('Date Unthreaded'),
|
'label' => t('Date Unthreaded'),
|
||||||
'url' => z_root() . '/' . $cmd . '?f=&order=unthreaded' . $filter,
|
'url' => z_root() . '/' . $cmd . '?f=&order=unthreaded' . $filter,
|
||||||
'sel' => $unthreaded_active,
|
'sel' => $unthreaded_active,
|
||||||
'title' => t('Activity Stream - by date'),
|
'title' => t('Order unthreaded by date'),
|
||||||
);
|
);
|
||||||
|
|
||||||
$arr = ['tabs' => $tabs];
|
$arr = ['tabs' => $tabs];
|
||||||
@ -109,7 +109,7 @@ class Activity_order {
|
|||||||
|
|
||||||
if($arr['tabs']) {
|
if($arr['tabs']) {
|
||||||
return replace_macros($tpl, [
|
return replace_macros($tpl, [
|
||||||
'$title' => t('Order Activity by'),
|
'$title' => t('Activity Order'),
|
||||||
'$tabs' => $arr['tabs'],
|
'$tabs' => $arr['tabs'],
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user