From 21f9f74ad0d24cc5d575bd19edd9e5ae3d53b430 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 9 May 2018 12:32:47 +0200 Subject: [PATCH 1/2] use Archives for the additional feature setting like it is used in the network sidebar --- src/Content/Feature.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Content/Feature.php b/src/Content/Feature.php index 92cb9ae773..8bb834b95c 100644 --- a/src/Content/Feature.php +++ b/src/Content/Feature.php @@ -93,7 +93,7 @@ class Feature // Network sidebar widgets 'widgets' => [ L10n::t('Network Sidebar Widgets'), - ['archives', L10n::t('Search by Date'), L10n::t('Ability to select posts by date ranges'), false, Config::get('feature_lock', 'archives', false)], + ['archives', L10n::t('Archives'), L10n::t('Ability to select posts by date ranges'), false, Config::get('feature_lock', 'archives', false)], ['forumlist_widget', L10n::t('List Forums'), L10n::t('Enable widget to display the forums your are connected with'), true, Config::get('feature_lock', 'forumlist_widget', false)], ['groups', L10n::t('Group Filter'), L10n::t('Enable widget to display Network posts only from selected group'), false, Config::get('feature_lock', 'groups', false)], ['networks', L10n::t('Network Filter'), L10n::t('Enable widget to display Network posts only from selected network'), false, Config::get('feature_lock', 'networks', false)], From 7f7ccc3f510c0c188d2631f1c8e0aaebfe705a1a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 9 May 2018 12:49:29 +0200 Subject: [PATCH 2/2] the widget is not needed here --- src/Content/Feature.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Content/Feature.php b/src/Content/Feature.php index 8bb834b95c..fe961db7d3 100644 --- a/src/Content/Feature.php +++ b/src/Content/Feature.php @@ -92,7 +92,7 @@ class Feature // Network sidebar widgets 'widgets' => [ - L10n::t('Network Sidebar Widgets'), + L10n::t('Network Sidebar'), ['archives', L10n::t('Archives'), L10n::t('Ability to select posts by date ranges'), false, Config::get('feature_lock', 'archives', false)], ['forumlist_widget', L10n::t('List Forums'), L10n::t('Enable widget to display the forums your are connected with'), true, Config::get('feature_lock', 'forumlist_widget', false)], ['groups', L10n::t('Group Filter'), L10n::t('Enable widget to display Network posts only from selected group'), false, Config::get('feature_lock', 'groups', false)],