return serendipity_db_query("SELECT * FROM {$serendipity['dbPrefix']}authors WHERE " . (is_numeric($author) ? "authorid={$author};" : "username='" . serendipity_db_escape_string($author) . "';"));
}
+function serendipity_fetchAuthors() {
+ global $serendipity;
+
+ return serendipity_db_query("SELECT * FROM {$serendipity['dbPrefix']}authors ORDER BY realname ASC;");
+}
+
/**
* Split up a filename
**/
serendipity_plugin_api::create_plugin_instance('@serendipity_quicksearch_plugin');
serendipity_plugin_api::create_plugin_instance('@serendipity_archives_plugin');
serendipity_plugin_api::create_plugin_instance('@serendipity_categories_plugin');
+ serendipity_plugin_api::create_plugin_instance('@serendipity_authors_plugin');
serendipity_plugin_api::create_plugin_instance('@serendipity_syndication_plugin');
serendipity_plugin_api::create_plugin_instance('@serendipity_superuser_plugin');
serendipity_plugin_api::create_plugin_instance('@serendipity_plug_plugin');
include_once S9Y_INCLUDE_PATH . 'include/plugin_internal.inc.php';
/* vim: set sts=4 ts=4 expandtab : */
-?>
\ No newline at end of file
+?>
}
}
+class serendipity_authors_plugin extends serendipity_plugin {
+ var $title = AUTHORS;
+
+ function introspect(&$propbag) {
+ global $serendipity;
+
+ $propbag->add('name', AUTHORS);
+ $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'));
+ $propbag->add('groups', array('FRONTEND_VIEWS'));
+ }
+
+ function introspect_config_item($name, &$propbag)
+ {
+ global $serendipity;
+ switch($name) {
+ case 'allow_select':
+ $propbag->add('type', 'boolean');
+ $propbag->add('name', AUTHORS_ALLOW_SELECT);
+ $propbag->add('description', AUTHORS_ALLOW_SELECT_DESC);
+ $propbag->add('default', true);
+ break;
+
+ case 'image':
+ $propbag->add('type', 'string');
+ $propbag->add('name', XML_IMAGE_TO_DISPLAY);
+ $propbag->add('description', XML_IMAGE_TO_DISPLAY_DESC);
+ $propbag->add('default', serendipity_getTemplateFile('img/xml.gif'));
+ break;
+
+ default:
+ return false;
+ }
+ return true;
+ }
+
+ function generate_content(&$title) {
+ global $serendipity;
+
+ $sort = $this->get_config('sort_order');
+ if ($sort == 'none') {
+ $sort = '';
+ } else {
+ $sort .= ' ' . $this->get_config('sort_method');
+ }
+ $is_form = serendipity_db_bool($this->get_config('allow_select'));
+ $authors = serendipity_fetchAuthors();
+ $title = $this->title;
+
+ $html = '';
+
+ if ($is_form) {
+ $html .= '<form action="' . $serendipity['baseURL'] . $serendipity['indexFile'] . '" method="post"><div>';
+ }
+
+ $image = $this->get_config('image', serendipity_getTemplateFile('img/xml.gif'));
+ $image = (($image == "'none'" || $image == 'none') ? '' : $image);
+
+ if (is_array($authors) && count($authors)) {
+ foreach ($authors as $auth) {
+
+ $html .= '<div style="padding-bottom: 2px;">';
+
+ if ($is_form) {
+ $html .= '<input style="width: 15px" type="checkbox" name="serendipity[multiAuth][]" value="' . $auth['authorid'] . '" />';
+ }
+
+ if ( !empty($image) ) {
+ $html .= '<a href="'. serendipity_feedAuthorURL($auth, 'serendipityHTTPPath') .'"><img src="'. $image .'" alt="XML" style="border: 0px" /></a> ';
+ }
+ $html .= '<a href="'. serendipity_authorURL($auth, 'serendipityHTTPPath') .'" title="'. htmlspecialchars($auth['realname']) .'">'. htmlspecialchars($auth['realname']) .'</a>';
+ $html .= '</div>' . "\n";
+ }
+ }
+
+ if ($is_form) {
+ $html .= '<br /><input type="submit" name="serendipity[isMultiAuth]" value="' . GO . '" /><br />';
+ }
+
+ $html .= sprintf(
+ '<br /><a href="%s" title="%s">%s</a>',
+
+ $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'],
+ ALL_AUTHORS,
+ ALL_AUTHORS
+ );
+
+ if ($is_form) {
+ $html .= '</div></form>';
+ }
+ print $html;
+ }
+}
+
/* vim: set sts=4 ts=4 expandtab : */
?>
$is_multicat = false;
}
+if (isset($serendipity['POST']['isMultiAuth']) && is_array($serendipity['POST']['multiAuth'])) {
+ $is_multiauth = true;
+} else {
+ $is_multiauth = false;
+}
+
if (preg_match(PAT_ARCHIVES, $uri, $matches) || isset($serendipity['GET']['range']) && is_numeric($serendipity['GET']['range'])) {
$_args = $serendipity['uriArguments'];
$serendipity['head_subtitle'] = $serendipity['blogTitle'];
include_once(S9Y_INCLUDE_PATH . 'include/genpage.inc.php');
-} else if (preg_match(PAT_PERMALINK_AUTHORS, $uri, $matches)) {
+} else if ($is_multiauth || preg_match(PAT_PERMALINK_AUTHORS, $uri, $matches)) {
+ if($is_multiauth) {
+ print "POST: ";
+ print_r($serendipity['POST']);
+ print "\n";
+ $serendipity['GET']['viewAuthor'] = implode(';', $serendipity['POST']['multiAuth']);
+ $serendipity['uriArguments'][] = PATH_AUTHORS;
+ $serendipity['uriArguments'][] = serendipity_db_escape_string($serendipity['GET']['viewAuthor']) . '-multi';
+ } elseif (preg_match('@/([0-9;]+)@', $uri, $multimatch)) {
+ $is_multiauth = true;
+ $serendipity['GET']['viewAuthor'] = $multimatch[1];
+ }
+ print_r($serendipity['GET']);
+
+ $serendipity['GET']['action'] = 'read';
+
$_args = $serendipity['uriArguments'];
/* Attempt to locate hidden variables within the URI */
}
}
- $matches[1] = serendipity_searchPermalink($serendipity['permalinkAuthorStructure'], implode('/', $serendipity['uriArguments']), $matches[1], 'author');
- $serendipity['GET']['viewAuthor'] = $matches[1];
- $serendipity['GET']['action'] = 'read';
+ if (!$is_multiauth) {
+ $matches[1] = serendipity_searchPermalink($serendipity['permalinkAuthorStructure'], implode('/', $serendipity['uriArguments']), $matches[1], 'author');
+ $serendipity['GET']['viewAuthor'] = $matches[1];
+ $serendipity['GET']['action'] = 'read';
+ }
$uInfo = serendipity_fetchUsers($serendipity['GET']['viewAuthor']);
$serendipity['head_title'] = sprintf(ENTRIES_BY, $uInfo[0]['realname']);
-<?php # $Id: serendipity_lang_bg.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_bg.inc.php 520 2005-10-01 18:04:21Z jtate $
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
# All rights reserved. See LICENSE file for licensing details
# Translation (c) 2004 Bogomil Shopov <bogomil@spisanie.com>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_cn.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_cn.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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 : */
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_cs.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_cs.inc.php 520 2005-10-01 18:04:21Z jtate $
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
# All rights reserved. See LICENSE file for licensing details
# Translation (c) 2005 Josef Klimosz <ok2wo@centrum.cz>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_cz.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_cz.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_da.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_da.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_de.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_de.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_en.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_en.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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 : */
@define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
@define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
@define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_es.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_es.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>,
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_fa.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_fa.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_fi.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_fi.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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 : */
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_fr.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_fr.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_is.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_is.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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 : */
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_it.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_it.inc.php 520 2005-10-01 18:04:21Z jtate $
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
# All rights reserved. See LICENSE file for licensing details
# Translation (c) by Alessandro Pellizzari <alex@amiran.it>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_ja.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_ja.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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.
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_ko.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_ko.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_nl.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_nl.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_no.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_no.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_pt.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_pt.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_ru.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_ru.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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 : */
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_tn.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_tn.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_tw.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_tw.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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>
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
-<?php # $Id: serendipity_lang_zh.inc.php 518 2005-10-01 05:48:24Z jtate $
+<?php # $Id: serendipity_lang_zh.inc.php 520 2005-10-01 18:04:21Z jtate $
# 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 : */
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('USERCONF_CHECK_PASSWORD_DESC', 'If you change the password in the field above, you need to enter the current user password into this field.');
@define('USERCONF_CHECK_PASSWORD_ERROR', 'You did not specify the right old password, and are not authorized to change the new password. Your settings were not saved.');
@define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
@define('INSTALL_PERMALINK_FEEDAUTHOR_DESC', 'Here you can define the relative URL structure beginning from your base URL to where RSS-feeds from specific users may be viewed. You can use the variables %id%, %realname%, %username%, %email% and any other characters.');
@define('INSTALL_PERMALINK_FEEDAUTHOR', 'Permalink RSS-Feed Author URL structure');
@define('INSTALL_PERMALINK_AUTHORSPATH', 'Path to authors');
+@define('AUTHORS', 'Authors');
+@define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
+@define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin. Users can check those boxes and see entries matching their selection.');
+@define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');