Make authors plugin not show authors with less than X articles
This commit is contained in:
parent
208da39475
commit
dc63c4637c
@ -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 = "";
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_da.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_da.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_de.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_de.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) Jannis Hermanns, Garvin Hicking and others
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_en.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_en.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
/* vim: set sts=4 ts=4 expandtab : */
|
||||
@ -882,4 +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('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_es.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_es.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Luis Cervantes <LuisCervantes@ono.com>,
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# this translation, translated by Omid Mottaghi <http://oxygenws.com>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Mauri Sahlberg <mos@iki.fi>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 1430 2006-10-03 15:52:17Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Sebastian Mordziol <argh@php-tools.net>
|
||||
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_is.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_is.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Örn Arnarson <orn@arnarson.net>
|
||||
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by: Wesley Hwang-Chung <wesley96@gmail.com>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 1459 2006-10-26 10:02:44Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_no.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_no.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
|
||||
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation (c) by Agner Olson <agner@agner.net>
|
||||
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Nightly <nightly@reys.net>
|
||||
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by CapriSkye <admin@capriskye.com>
|
||||
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by CapriSkye <admin@capriskye.com>
|
||||
@ -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');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 1408 2006-08-23 13:47:50Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 1456 2006-10-25 08:27:16Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -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');
|
||||
|
@ -1 +1 @@
|
||||
@define('DELETE_SELECTED_ENTRIES', 'Delete selected entries');
|
||||
@define('PLUGIN_AUTHORS_MINCOUNT', 'Show only authors with at least X articles');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user