From 421db4e454a9250ac4a414b53354879e8c62e697 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Nov 2019 17:03:40 +0000 Subject: [PATCH] Changed label for network sorting --- mod/network.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/network.php b/mod/network.php index 124c598877..5fbfa9a5d8 100644 --- a/mod/network.php +++ b/mod/network.php @@ -928,7 +928,7 @@ function network_tabs(App $a) '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 lastest activity on the posts'), + 'title' => L10n::t('Sort by latest activity'), '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 the posts' receiving date"), + 'title' => L10n::t('Sort by post received date'), 'id' => 'post-order-tab', 'accesskey' => 't', ],