]> git.mjollnir.org Git - s9y.git/commitdiff
Plugin to show authors in the sidebar. Much like the categories plugin with links...
authorjtate <jtate>
Sat, 1 Oct 2005 21:12:31 +0000 (21:12 +0000)
committerjtate <jtate>
Sat, 1 Oct 2005 21:12:31 +0000 (21:12 +0000)
56 files changed:
include/functions.inc.php
include/plugin_api.inc.php
include/plugin_internal.inc.php
index.php
lang/UTF-8/serendipity_lang_bg.inc.php
lang/UTF-8/serendipity_lang_cn.inc.php
lang/UTF-8/serendipity_lang_cs.inc.php
lang/UTF-8/serendipity_lang_cz.inc.php
lang/UTF-8/serendipity_lang_da.inc.php
lang/UTF-8/serendipity_lang_de.inc.php
lang/UTF-8/serendipity_lang_en.inc.php
lang/UTF-8/serendipity_lang_es.inc.php
lang/UTF-8/serendipity_lang_fa.inc.php
lang/UTF-8/serendipity_lang_fi.inc.php
lang/UTF-8/serendipity_lang_fr.inc.php
lang/UTF-8/serendipity_lang_hu.inc.php
lang/UTF-8/serendipity_lang_is.inc.php
lang/UTF-8/serendipity_lang_it.inc.php
lang/UTF-8/serendipity_lang_ja.inc.php
lang/UTF-8/serendipity_lang_ko.inc.php
lang/UTF-8/serendipity_lang_nl.inc.php
lang/UTF-8/serendipity_lang_no.inc.php
lang/UTF-8/serendipity_lang_pt.inc.php
lang/UTF-8/serendipity_lang_pt_PT.inc.php
lang/UTF-8/serendipity_lang_ro.inc.php
lang/UTF-8/serendipity_lang_ru.inc.php
lang/UTF-8/serendipity_lang_se.inc.php
lang/UTF-8/serendipity_lang_tn.inc.php
lang/UTF-8/serendipity_lang_tw.inc.php
lang/UTF-8/serendipity_lang_zh.inc.php
lang/serendipity_lang_bg.inc.php
lang/serendipity_lang_cn.inc.php
lang/serendipity_lang_cs.inc.php
lang/serendipity_lang_cz.inc.php
lang/serendipity_lang_da.inc.php
lang/serendipity_lang_de.inc.php
lang/serendipity_lang_en.inc.php
lang/serendipity_lang_es.inc.php
lang/serendipity_lang_fa.inc.php
lang/serendipity_lang_fi.inc.php
lang/serendipity_lang_fr.inc.php
lang/serendipity_lang_hu.inc.php
lang/serendipity_lang_is.inc.php
lang/serendipity_lang_it.inc.php
lang/serendipity_lang_ja.inc.php
lang/serendipity_lang_ko.inc.php
lang/serendipity_lang_nl.inc.php
lang/serendipity_lang_no.inc.php
lang/serendipity_lang_pt.inc.php
lang/serendipity_lang_pt_PT.inc.php
lang/serendipity_lang_ro.inc.php
lang/serendipity_lang_ru.inc.php
lang/serendipity_lang_se.inc.php
lang/serendipity_lang_tn.inc.php
lang/serendipity_lang_tw.inc.php
lang/serendipity_lang_zh.inc.php

index 1266c45eb65ca6b3df57ee2298ed7696b5447080..a5701da99c4cab8c958cbb263ec1fb56c8f87522 100644 (file)
@@ -339,6 +339,12 @@ function serendipity_fetchAuthor($author) {
     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
 **/
index 8ab525a08e77ca42281c0549dac20b77ad7a9f70..b4e22c4ff3b2c8863adb0ce15fddb8120c441342 100644 (file)
@@ -35,6 +35,7 @@ class serendipity_plugin_api {
         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');
@@ -1084,4 +1085,4 @@ class serendipity_event extends serendipity_plugin {
 include_once S9Y_INCLUDE_PATH . 'include/plugin_internal.inc.php';
 
 /* vim: set sts=4 ts=4 expandtab : */
-?>
\ No newline at end of file
+?>
index 12588aa515a2d9506066c5b4c10a5685f31bc3c5..aab656401a32b493dc5c053170e4b44a3f6b9b2d 100644 (file)
@@ -1341,5 +1341,102 @@ class serendipity_categories_plugin extends serendipity_plugin {
     }
 }
 
+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 : */
 ?>
index 61143ad8030053f6c1af4fd531d11842eba93775..33c41f12039f80f8c3a0353e05b0db25949ccc87 100644 (file)
--- a/index.php
+++ b/index.php
@@ -72,6 +72,12 @@ if (isset($serendipity['POST']['isMultiCat']) && is_array($serendipity['POST']['
     $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'];
 
@@ -344,7 +350,22 @@ if (preg_match(PAT_ARCHIVES, $uri, $matches) || isset($serendipity['GET']['range
     $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 */
@@ -359,9 +380,11 @@ if (preg_match(PAT_ARCHIVES, $uri, $matches) || isset($serendipity['GET']['range
         }
     }
 
-    $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']);
index 64170ce423dea9025b734982ac3d946d03e3f2a2..a4ba2b6b7c612dc6a4239b161e20a5de409ac2a1 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 063932d6c8957a453b789d7f77794c467483da6c..b1687319d0cd33f6f996bc32ec91024176a3d566 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 888d5ed88c7a3f1ce86fc04042a52430d357195e..ccd46e9549be2cba3019f151d0e4e600bc493c80 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index c9059680f28d863141ec3fee37957c970ebe60d2..80572d1b7eb998dac4de41f17f3ff2e289f7423a 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 7ef0c1a824a4ed317c78d5df4bb1c7e78b0fb8c0..2ac3104ef29ea21bac4935c091870aae3e9449ad 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 6f9b1be5e0110160dd69ab9041c6d88c377793d0..2a6d7cf49fd2a607dc7ca9223c4990fb988c72bc 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index f037b5d3ba414c77cc53b45869b1a228295acf45..2cc6ba1df0d1070fe8a0358170ca7baae50f505c 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 66b6cc8083f1690af29932cfadf1b19d30657a67..5cd7aca6257d3a4f1fbb819032f76ef752f19172 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 71fc76a060e0647d588ade68d2255f7754c216fb..452bc3269ae71a52e3888d791bf41f7b4d6b665e 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 2e005a400fdfccd1fbd50d72cc34967797c49a92..332bfe71378c73fd3e908d32d4d55d12abae3177 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index dc7cfb300e7043e3385e11e01459945909d7a9d4..2c58c0fd8115ce63292f05f7029f50f4ef83ca1d 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 673ea5cde490774b5e1bef7f5f5358a785b0262a..c56ba7e808af00dd255aa7db67ac7cf978fa9089 100644 (file)
 @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');
index c2ae31543086e18359bbd298ec267f52d6688a70..4f277d26af39dd19289d9ac5389687f66ce624a7 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index fc01627f4ff5782d62030cbe03d367a72f03f623..386df417e39f645ddfaa718684313d063ea6a2d6 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 9675501fe367185d1f1e5a551829367180527316..9fb150b65d03618f781597e969f73ffce1b75f45 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 2cfe8b33fe4f4ce52c9f887b5215796575649836..0495b2cd1506eb8bdddb59275bf9ab5f88d66ed5 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 74921c28795cdcd225b9869e714a228b87265bc5..e413b0b55428130c0f1507452bd204de89fba44a 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 56e3c1562963048bed17f18c0f6f7f2cc6f74a2f..d5d84464a1355e63f5f6d3fef17aeade82f0c247 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 2622cfb76ca3038a1c7fbebc1a3753b056a1ec3a..1c1001d8fef41e438ff2ae2aa983a2a2626fd11a 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index ab044bf72024a7e41dfcd40d8c6d6ffd5faf3338..8386084458a7e0502bdf780210d35c8750035cec 100644 (file)
 @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');
index b9637a1dbfb3d4ce724409f0eb70696d5895f0b3..389feb96b1b3b4d7f09daf531a56ca92f0da0ab2 100644 (file)
 @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');
index a36278907c596b8bdba7a67f41ed3d28532d3cdf..004b9b2a82400668e479a1717d3bfe18a71216a0 100644 (file)
@@ -1,4 +1,4 @@
-<?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 : */
@@ -789,3 +789,7 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @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');
index 0ff142a24f554645f60532c2a4291d3aeba38fd5..9987b5a52804c3370cdd613c89f4262a359432d7 100644 (file)
 @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');
index ca467e267ea0cafdb630abe4a0e1d3704530fdac..f6762af2b51daccd1a98245035608b75839beb98 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index a2b381e38e43fca120f35689efeb96d2c1ee5464..20ce5828ccdf10ce388e5833793e57eb797b14e7 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index 587e730ce6f3e3cf6f142a81d44c772c0c9c3675..23bdf7c2cca23ed599c14741840644a0c37c2947 100644 (file)
@@ -1,4 +1,4 @@
-<?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');
index ea3064ec0235cda4663a8e98180133dadba815fc..c381c171c6efdfa805da4a27741484bbd1cf71a8 100644 (file)
 @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');
index 80c77c761fb0cd6e7f99d224f1de54ac45e80061..97c5fcfc23f7ad5cf0f5c78ab4930f606b08d631 100644 (file)
 @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');
index 2463e041f0b293c3a95aa6c14adc8d5d9fe0eda0..e6f15401d7609f4b714f2cf0bc47cd692a2aadcf 100644 (file)
 @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');
index af7db2a3f7087bdb84661468b86194d871445cf8..53be5d9a15f362b0e0c16ed3416306673967eda3 100644 (file)
 @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');
index f06446885fd19fc542dd0943057d25a9c2f9ca7a..8abfd025f39495dbd02c7c6be9b5530420ae1cc3 100644 (file)
 @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');
index dc88ec0b21178c9e0cca4982535b3eec1d6a91d7..45644002b05fa75ac2cf81d134fbf181bf69bcec 100644 (file)
 @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');
index 85c86426ccd5747e0205e427d3335109c22485ef..608997fab76dad7e2186f91320c85953c963e01e 100644 (file)
 @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');
index 6846e6023df502348cef7ab0454ca00bc4a05e4e..0777345d583cd7f157cd62987103b5cad4383814 100644 (file)
 @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');
index e68784b981302a7327eea8da3d631380789b8cd2..68aded86494ddb9c4991f2d86225384ea5cf9688 100644 (file)
 @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');
index 0b5ebde74140823caf7449085cbeadd40e2c51f9..f6a626487d7812a189db3a174d16dd0808fbab2c 100644 (file)
 @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');
index 46ef9f4d46ac0acab2c9c2f33b56cb8301effcc0..d363ee7e603ea8ee0395621a133ba49c39dd9f64 100644 (file)
 @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');
index a27f66fdb16c179e735429d67374e54faf3b06c3..8869ebd7077366c25a49887ccea1afd5b7ca6f6e 100644 (file)
 @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');
index d97b83198c86f6e561a2112f4db0e5fc68fbd752..eb5e6f8ee77ef140c27d4033f1ebfbf6a5e4e653 100644 (file)
 @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');
index 6a08200a1fe21a90dd67827d3507eae45913d32e..d90cbe32f4a2286a3e9b73914ee5af3de30175af 100644 (file)
 @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');
index 219053b35361c71fe1af4b15d9444867129bc707..80ec3689fc4262a07e3b06e3de6ffb597e5e2a3d 100644 (file)
 @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');
index 02b21a50989b9fd3684578c57c5926c32a0d7652..0b62c8f74ee2ebf3f56a3b2d9be7563688c22eb9 100644 (file)
 @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');
index 7b04bad0ea2b319d9b456c7c6865a39b28329e56..6490ee27de8382e27c967d8d95810fe21a837f4b 100644 (file)
 @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');
index a8ddad580fef6f7ba01165109ae9982d93df8e69..e69002b5544b23cebad7a44a33846d466da17372 100644 (file)
 @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');
index 120e417fa3f5ed55dc1cd4d9154cd1261fdc6abd..8f275c15cc3f6f1b923347339a117a46ad6b33d9 100644 (file)
 @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');
index 8e683fab820ad2f5ab8916fce4528df9451e0d7e..3f7b392c3dba055e97c9197780ae0e30b3df976c 100644 (file)
 @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');
index b9637a1dbfb3d4ce724409f0eb70696d5895f0b3..389feb96b1b3b4d7f09daf531a56ca92f0da0ab2 100644 (file)
 @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');
index 39e76b7f431ac799e79b9f42f7aee7369c5158b5..c011653bef80d3956d0532736600e58d94bea918 100644 (file)
@@ -789,3 +789,7 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @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');
index 73c436b99997f4fd9cc635badc4eb77f86319472..ca4e49661e79f0fa2e99d325ea6488eac58c096c 100644 (file)
 @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');
index 47aa877830caa86595aaa2037e629268c8b52d6a..b02be8be7d17f85a682c35730c19be07417a49f0 100644 (file)
 @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');
index afc026106fda282c68639f5ffd7ef0dfe3303e5a..ced4bb926447630a27edd9fb1798ec8e2a3e4985 100644 (file)
 @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');
index 2cc8b3aee0ba6f6090b41b2f418dda23522b711b..75d2b5e87a81ccdeb2a453aa1118c037898c86f8 100644 (file)
 @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');