From 396e9795e3544ff179ac84439a9b5b5cc7e6c695 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Thu, 26 Oct 2006 20:05:04 +0000 Subject: [PATCH] Make authors plugin not show authors with less than X articles --- include/plugin_internal.inc.php | 16 +++++++++++++--- lang/UTF-8/plugin_lang.php | 1 + lang/UTF-8/serendipity_lang_bg.inc.php | 1 + lang/UTF-8/serendipity_lang_cn.inc.php | 3 ++- lang/UTF-8/serendipity_lang_cs.inc.php | 3 ++- lang/UTF-8/serendipity_lang_cz.inc.php | 3 ++- lang/UTF-8/serendipity_lang_da.inc.php | 3 ++- lang/UTF-8/serendipity_lang_de.inc.php | 3 ++- lang/UTF-8/serendipity_lang_en.inc.php | 4 ++-- lang/UTF-8/serendipity_lang_es.inc.php | 3 ++- lang/UTF-8/serendipity_lang_fa.inc.php | 3 ++- lang/UTF-8/serendipity_lang_fi.inc.php | 3 ++- lang/UTF-8/serendipity_lang_fr.inc.php | 3 ++- lang/UTF-8/serendipity_lang_hu.inc.php | 1 + lang/UTF-8/serendipity_lang_is.inc.php | 3 ++- lang/UTF-8/serendipity_lang_it.inc.php | 1 + lang/UTF-8/serendipity_lang_ja.inc.php | 3 ++- lang/UTF-8/serendipity_lang_ko.inc.php | 3 ++- lang/UTF-8/serendipity_lang_nl.inc.php | 3 ++- lang/UTF-8/serendipity_lang_no.inc.php | 3 ++- lang/UTF-8/serendipity_lang_pl.inc.php | 1 + lang/UTF-8/serendipity_lang_pt.inc.php | 3 ++- lang/UTF-8/serendipity_lang_pt_PT.inc.php | 1 + lang/UTF-8/serendipity_lang_ro.inc.php | 1 + lang/UTF-8/serendipity_lang_ru.inc.php | 3 ++- lang/UTF-8/serendipity_lang_sa.inc.php | 1 + lang/UTF-8/serendipity_lang_se.inc.php | 1 + lang/UTF-8/serendipity_lang_ta.inc.php | 1 + lang/UTF-8/serendipity_lang_tn.inc.php | 3 ++- lang/UTF-8/serendipity_lang_tr.inc.php | 1 + lang/UTF-8/serendipity_lang_tw.inc.php | 3 ++- lang/UTF-8/serendipity_lang_zh.inc.php | 3 ++- lang/addlang.txt | 2 +- lang/plugin_lang.php | 1 + lang/serendipity_lang_bg.inc.php | 1 + lang/serendipity_lang_cn.inc.php | 1 + lang/serendipity_lang_cs.inc.php | 1 + lang/serendipity_lang_cz.inc.php | 1 + lang/serendipity_lang_da.inc.php | 1 + lang/serendipity_lang_de.inc.php | 1 + lang/serendipity_lang_en.inc.php | 1 + lang/serendipity_lang_es.inc.php | 1 + lang/serendipity_lang_fa.inc.php | 1 + lang/serendipity_lang_fi.inc.php | 1 + lang/serendipity_lang_fr.inc.php | 1 + lang/serendipity_lang_hu.inc.php | 1 + lang/serendipity_lang_is.inc.php | 1 + lang/serendipity_lang_it.inc.php | 1 + lang/serendipity_lang_ja.inc.php | 1 + lang/serendipity_lang_ko.inc.php | 1 + lang/serendipity_lang_nl.inc.php | 1 + lang/serendipity_lang_no.inc.php | 1 + lang/serendipity_lang_pl.inc.php | 1 + lang/serendipity_lang_pt.inc.php | 1 + lang/serendipity_lang_pt_PT.inc.php | 1 + lang/serendipity_lang_ro.inc.php | 1 + lang/serendipity_lang_ru.inc.php | 1 + lang/serendipity_lang_sa.inc.php | 1 + lang/serendipity_lang_se.inc.php | 1 + lang/serendipity_lang_ta.inc.php | 1 + lang/serendipity_lang_tn.inc.php | 1 + lang/serendipity_lang_tr.inc.php | 1 + lang/serendipity_lang_tw.inc.php | 1 + lang/serendipity_lang_zh.inc.php | 1 + 64 files changed, 96 insertions(+), 25 deletions(-) diff --git a/include/plugin_internal.inc.php b/include/plugin_internal.inc.php index d94c0f0..19c3154 100644 --- a/include/plugin_internal.inc.php +++ b/include/plugin_internal.inc.php @@ -1583,8 +1583,8 @@ class serendipity_authors_plugin extends serendipity_plugin { $propbag->add('description', AUTHOR_PLUGIN_DESC); $propbag->add('stackable', true); $propbag->add('author', 'Serendipity Team'); - $propbag->add('version', '2.0'); - $propbag->add('configuration', array('image', 'allow_select', 'title', 'showartcount')); + $propbag->add('version', '2.01'); + $propbag->add('configuration', array('image', 'allow_select', 'title', 'showartcount', 'mincount')); $propbag->add('groups', array('FRONTEND_VIEWS')); } @@ -1620,6 +1620,13 @@ class serendipity_authors_plugin extends serendipity_plugin { $propbag->add('default', false); break; + case 'mincount': + $propbag->add('type', 'string'); + $propbag->add('name', PLUGIN_AUTHORS_MINCOUNT); + $propbag->add('description', ''); + $propbag->add('default', ''); + break; + default: return false; } @@ -1639,8 +1646,8 @@ class serendipity_authors_plugin extends serendipity_plugin { } $is_form = serendipity_db_bool($this->get_config('allow_select')); $is_count = serendipity_db_bool($this->get_config('showartcount')); + $mincount = (int)$this->get_config('mincount'); $authors = serendipity_fetchUsers(null, null, $is_count); - $html = ''; if ($is_form) { @@ -1654,6 +1661,9 @@ class serendipity_authors_plugin extends serendipity_plugin { foreach ($authors as $auth) { if ($is_count) { + if ($auth['artcount'] < $mincount) { + continue; + } $entrycount = " ({$auth['artcount']})"; } else { $entrycount = ""; diff --git a/lang/UTF-8/plugin_lang.php b/lang/UTF-8/plugin_lang.php index b6a64d2..6b5e70a 100644 --- a/lang/UTF-8/plugin_lang.php +++ b/lang/UTF-8/plugin_lang.php @@ -85,3 +85,4 @@ foreach($const['missing'] AS $file => $constants) { @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_bg.inc.php b/lang/UTF-8/serendipity_lang_bg.inc.php index a74ac29..6045154 100644 --- a/lang/UTF-8/serendipity_lang_bg.inc.php +++ b/lang/UTF-8/serendipity_lang_bg.inc.php @@ -872,3 +872,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Разрешаване на Plugin ACL за потребителски групи ?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Ако опцията "Plugin ACL за потребителски групи" е позволена, ще можете да указвате кои потребителски групи имат позволението да изпълняват дадени събитийни и странични приставки.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_cn.inc.php b/lang/UTF-8/serendipity_lang_cn.inc.php index a94b80a..f15ffb1 100644 --- a/lang/UTF-8/serendipity_lang_cn.inc.php +++ b/lang/UTF-8/serendipity_lang_cn.inc.php @@ -1,4 +1,4 @@ - @@ -898,3 +898,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_cz.inc.php b/lang/UTF-8/serendipity_lang_cz.inc.php index 7bd20ae..fc30a44 100644 --- a/lang/UTF-8/serendipity_lang_cz.inc.php +++ b/lang/UTF-8/serendipity_lang_cz.inc.php @@ -1,4 +1,4 @@ - @@ -898,3 +898,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_da.inc.php b/lang/UTF-8/serendipity_lang_da.inc.php index aa4262a..feffa39 100644 --- a/lang/UTF-8/serendipity_lang_da.inc.php +++ b/lang/UTF-8/serendipity_lang_da.inc.php @@ -1,4 +1,4 @@ - @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_de.inc.php b/lang/UTF-8/serendipity_lang_de.inc.php index 45b0125..0591784 100644 --- a/lang/UTF-8/serendipity_lang_de.inc.php +++ b/lang/UTF-8/serendipity_lang_de.inc.php @@ -1,4 +1,4 @@ -, @@ -894,3 +894,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ?? @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_fa.inc.php b/lang/UTF-8/serendipity_lang_fa.inc.php index f7efeba..17b09b5 100644 --- a/lang/UTF-8/serendipity_lang_fa.inc.php +++ b/lang/UTF-8/serendipity_lang_fa.inc.php @@ -1,4 +1,4 @@ - @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_fi.inc.php b/lang/UTF-8/serendipity_lang_fi.inc.php index c094a16..0aee526 100644 --- a/lang/UTF-8/serendipity_lang_fi.inc.php +++ b/lang/UTF-8/serendipity_lang_fi.inc.php @@ -1,4 +1,4 @@ - @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_fr.inc.php b/lang/UTF-8/serendipity_lang_fr.inc.php index 2766f5c..531daa4 100644 --- a/lang/UTF-8/serendipity_lang_fr.inc.php +++ b/lang/UTF-8/serendipity_lang_fr.inc.php @@ -1,4 +1,4 @@ - @@ -891,3 +891,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_hu.inc.php b/lang/UTF-8/serendipity_lang_hu.inc.php index ac91eb9..68c5de4 100644 --- a/lang/UTF-8/serendipity_lang_hu.inc.php +++ b/lang/UTF-8/serendipity_lang_hu.inc.php @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_is.inc.php b/lang/UTF-8/serendipity_lang_is.inc.php index 409c26c..57e723b 100644 --- a/lang/UTF-8/serendipity_lang_is.inc.php +++ b/lang/UTF-8/serendipity_lang_is.inc.php @@ -1,4 +1,4 @@ - @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_it.inc.php b/lang/UTF-8/serendipity_lang_it.inc.php index e847285..058f536 100644 --- a/lang/UTF-8/serendipity_lang_it.inc.php +++ b/lang/UTF-8/serendipity_lang_it.inc.php @@ -888,3 +888,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_ja.inc.php b/lang/UTF-8/serendipity_lang_ja.inc.php index f0da032..3a5c6ea 100644 --- a/lang/UTF-8/serendipity_lang_ja.inc.php +++ b/lang/UTF-8/serendipity_lang_ja.inc.php @@ -1,4 +1,4 @@ -, 2004-2005. @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_ko.inc.php b/lang/UTF-8/serendipity_lang_ko.inc.php index 5d0b1dd..c573cbb 100644 --- a/lang/UTF-8/serendipity_lang_ko.inc.php +++ b/lang/UTF-8/serendipity_lang_ko.inc.php @@ -1,4 +1,4 @@ - @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_nl.inc.php b/lang/UTF-8/serendipity_lang_nl.inc.php index a0e106b..7dc0c89 100644 --- a/lang/UTF-8/serendipity_lang_nl.inc.php +++ b/lang/UTF-8/serendipity_lang_nl.inc.php @@ -1,4 +1,4 @@ - @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_no.inc.php b/lang/UTF-8/serendipity_lang_no.inc.php index 935938a..d5a02fa 100644 --- a/lang/UTF-8/serendipity_lang_no.inc.php +++ b/lang/UTF-8/serendipity_lang_no.inc.php @@ -1,4 +1,4 @@ - @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_pl.inc.php b/lang/UTF-8/serendipity_lang_pl.inc.php index d736f13..141b2c8 100644 --- a/lang/UTF-8/serendipity_lang_pl.inc.php +++ b/lang/UTF-8/serendipity_lang_pl.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_pt.inc.php b/lang/UTF-8/serendipity_lang_pt.inc.php index d03e82d..ba06b16 100644 --- a/lang/UTF-8/serendipity_lang_pt.inc.php +++ b/lang/UTF-8/serendipity_lang_pt.inc.php @@ -1,4 +1,4 @@ - @@ -889,3 +889,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_pt_PT.inc.php b/lang/UTF-8/serendipity_lang_pt_PT.inc.php index 7c7df06..616c7cf 100644 --- a/lang/UTF-8/serendipity_lang_pt_PT.inc.php +++ b/lang/UTF-8/serendipity_lang_pt_PT.inc.php @@ -891,3 +891,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_ro.inc.php b/lang/UTF-8/serendipity_lang_ro.inc.php index 4496be7..9ae76a4 100644 --- a/lang/UTF-8/serendipity_lang_ro.inc.php +++ b/lang/UTF-8/serendipity_lang_ro.inc.php @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_ru.inc.php b/lang/UTF-8/serendipity_lang_ru.inc.php index a77544f..556bfca 100644 --- a/lang/UTF-8/serendipity_lang_ru.inc.php +++ b/lang/UTF-8/serendipity_lang_ru.inc.php @@ -1,4 +1,4 @@ - @@ -888,3 +888,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_sa.inc.php b/lang/UTF-8/serendipity_lang_sa.inc.php index c4765b7..174c499 100644 --- a/lang/UTF-8/serendipity_lang_sa.inc.php +++ b/lang/UTF-8/serendipity_lang_sa.inc.php @@ -803,3 +803,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_se.inc.php b/lang/UTF-8/serendipity_lang_se.inc.php index 035b5fc..a1f42cb 100644 --- a/lang/UTF-8/serendipity_lang_se.inc.php +++ b/lang/UTF-8/serendipity_lang_se.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_ta.inc.php b/lang/UTF-8/serendipity_lang_ta.inc.php index 550ea31..9938360 100644 --- a/lang/UTF-8/serendipity_lang_ta.inc.php +++ b/lang/UTF-8/serendipity_lang_ta.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_tn.inc.php b/lang/UTF-8/serendipity_lang_tn.inc.php index 64a9e70..c3eb6a1 100644 --- a/lang/UTF-8/serendipity_lang_tn.inc.php +++ b/lang/UTF-8/serendipity_lang_tn.inc.php @@ -1,4 +1,4 @@ - @@ -888,3 +888,4 @@ $i18n_unknown = 'tw'; @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_tr.inc.php b/lang/UTF-8/serendipity_lang_tr.inc.php index cad47f0..fa3369d 100644 --- a/lang/UTF-8/serendipity_lang_tr.inc.php +++ b/lang/UTF-8/serendipity_lang_tr.inc.php @@ -888,3 +888,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_tw.inc.php b/lang/UTF-8/serendipity_lang_tw.inc.php index a0479df..56c838c 100644 --- a/lang/UTF-8/serendipity_lang_tw.inc.php +++ b/lang/UTF-8/serendipity_lang_tw.inc.php @@ -1,4 +1,4 @@ - @@ -888,3 +888,4 @@ $i18n_unknown = 'tw'; @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/UTF-8/serendipity_lang_zh.inc.php b/lang/UTF-8/serendipity_lang_zh.inc.php index a45032b..a141a2f 100644 --- a/lang/UTF-8/serendipity_lang_zh.inc.php +++ b/lang/UTF-8/serendipity_lang_zh.inc.php @@ -1,4 +1,4 @@ - $constants) { @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index f22484f..4063b1c 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -872,3 +872,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Ðàçðåøàâàíå íà Plugin ACL çà ïîòðåáèòåëñêè ãðóïè ?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Àêî îïöèÿòà "Plugin ACL çà ïîòðåáèòåëñêè ãðóïè" å ïîçâîëåíà, ùå ìîæåòå äà óêàçâàòå êîè ïîòðåáèòåëñêè ãðóïè èìàò ïîçâîëåíèåòî äà èçïúëíÿâàò äàäåíè ñúáèòèéíè è ñòðàíè÷íè ïðèñòàâêè.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index cccc0d8..e1218c6 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index 20fb450..c448308 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -898,3 +898,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index d2aca58..60a66ec 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -898,3 +898,4 @@ $i18n_filename_to = array ( @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 70fc9d7..4d27b24 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index 3abd681..33c3b98 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -881,3 +881,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Sollen persönliche Plugin-Rechte für Benutzergruppen aktiviert werden?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'Falls diese Option aktiviert ist, können Sie bei jeder Benutzergruppe definieren, welche Plugins/Ereignisse diese Gruppe ausführen darf.'); @define('DELETE_SELECTED_ENTRIES', 'Markierte Einträge löschen'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index e9d8721..c940121 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -882,3 +882,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index c7616f8..519ad15 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -894,3 +894,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ?? @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index 3313223..d25a5e0 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -886,3 +886,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index efc193f..6c452e3 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index 5228981..50bb738 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -891,3 +891,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_hu.inc.php b/lang/serendipity_lang_hu.inc.php index 44e433a..aabf567 100644 --- a/lang/serendipity_lang_hu.inc.php +++ b/lang/serendipity_lang_hu.inc.php @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index 0287ad1..a633944 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index bde73bb..09751e4 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -888,3 +888,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index 4e16e23..9c4b652 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index 3f955b8..1979854 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index f0fd45c..ccf6efd 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index 7428db8..f5ec484 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -887,3 +887,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_pl.inc.php b/lang/serendipity_lang_pl.inc.php index 40d5d4a..8b3350f 100644 --- a/lang/serendipity_lang_pl.inc.php +++ b/lang/serendipity_lang_pl.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index e49b964..b39afd3 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -889,3 +889,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_pt_PT.inc.php b/lang/serendipity_lang_pt_PT.inc.php index bc3bc8a..7acd57e 100644 --- a/lang/serendipity_lang_pt_PT.inc.php +++ b/lang/serendipity_lang_pt_PT.inc.php @@ -891,3 +891,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 4496be7..9ae76a4 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index f3b7f27..18f1756 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -888,3 +888,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_sa.inc.php b/lang/serendipity_lang_sa.inc.php index 44c8872..12bf120 100644 --- a/lang/serendipity_lang_sa.inc.php +++ b/lang/serendipity_lang_sa.inc.php @@ -803,3 +803,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_se.inc.php b/lang/serendipity_lang_se.inc.php index 5976793..57d9ec3 100644 --- a/lang/serendipity_lang_se.inc.php +++ b/lang/serendipity_lang_se.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_ta.inc.php b/lang/serendipity_lang_ta.inc.php index 550ea31..9938360 100644 --- a/lang/serendipity_lang_ta.inc.php +++ b/lang/serendipity_lang_ta.inc.php @@ -884,3 +884,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index 505ba98..33757cc 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -888,3 +888,4 @@ $i18n_unknown = 'tw'; @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_tr.inc.php b/lang/serendipity_lang_tr.inc.php index cad47f0..fa3369d 100644 --- a/lang/serendipity_lang_tr.inc.php +++ b/lang/serendipity_lang_tr.inc.php @@ -888,3 +888,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index 2c51259..499270d 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -888,3 +888,4 @@ $i18n_unknown = 'tw'; @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index 755c936..c07c57e 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -885,3 +885,4 @@ @define('PERMISSION_FORBIDDEN_ENABLE', 'Enable Plugin ACL for usergroups?'); @define('PERMISSION_FORBIDDEN_ENABLE_DESC', 'If the option "Plugin ACL for usergroups" is enabled in the configuration, you can specify which usergroups are allowed to execute certain plugins/events.'); @define('DELETE_SELECTED_ENTRIES', 'Delete selected entries'); +@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles'); -- 2.39.5