From 682001ab0a241160feb4e2b7511e208f64eddf88 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Nov 2019 13:55:55 +0000 Subject: [PATCH] And some other renaming --- mod/network.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/network.php b/mod/network.php index 80706705d..124c59887 100644 --- a/mod/network.php +++ b/mod/network.php @@ -925,10 +925,10 @@ function network_tabs(App $a) // tabs $tabs = [ [ - 'label' => L10n::t('Latest Activities'), + 'label' => L10n::t('Latest Activity'), 'url' => str_replace('/new', '', $cmd) . '?order=activity' . (!empty($_GET['cid']) ? '&cid=' . $_GET['cid'] : ''), 'sel' => $all_active, - 'title' => L10n::t('Sort by activity Date'), + 'title' => L10n::t('Sort by lastest activity on the posts'), 'id' => 'activity-order-tab', 'accesskey' => 'e', ], @@ -936,7 +936,7 @@ function network_tabs(App $a) 'label' => L10n::t('Latest Posts'), 'url' => str_replace('/new', '', $cmd) . '?order=post' . (!empty($_GET['cid']) ? '&cid=' . $_GET['cid'] : ''), 'sel' => $post_active, - 'title' => L10n::t('Sort by post date'), + 'title' => L10n::t("Sort by the posts' receiving date"), 'id' => 'post-order-tab', 'accesskey' => 't', ],