]> git.mjollnir.org Git - s9y.git/commitdiff
Allow to show the category/entry count
authorgarvinhicking <garvinhicking>
Tue, 11 Oct 2005 17:43:58 +0000 (17:43 +0000)
committergarvinhicking <garvinhicking>
Tue, 11 Oct 2005 17:43:58 +0000 (17:43 +0000)
55 files changed:
docs/NEWS
include/plugin_internal.inc.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/addlang.txt
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 afb7a056d7c19a5ea5936defb49aa4ab63b7e4a7..5bdf7c91f1939c15e9e8459ab4ade429bfb86e65 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -8,7 +8,8 @@ Version 0.9-beta2 ()
       Martin Eichenberg! (garvinhicking)
 
     * The output of the category plugin can now be styled via Smarty
-      templating (plugin_categories.tpl)
+      templating (plugin_categories.tpl). Also you can now enable showing
+      the number of entries per category. (garvinhicking)
 
     * Admin entry overview: Show pagination on bottom of the list and
       allow filtering for showing drafts/publishs (garvinhicking)
index f7ca5f7cb6c4a2ec52cc3904edc0caa7a68d01cf..7abf7b8ebb6967c4155eaf93a70c22ac6b399d94 100644 (file)
@@ -1151,7 +1151,7 @@ class serendipity_categories_plugin extends serendipity_plugin {
         $propbag->add('stackable',     true);
         $propbag->add('author',        'Serendipity Team');
         $propbag->add('version',       '2.0');
-        $propbag->add('configuration', array('authorid', 'parent_base', 'image', 'sort_order', 'sort_method', 'allow_select', 'hide_parallel', 'smarty'));
+        $propbag->add('configuration', array('authorid', 'parent_base', 'image', 'sort_order', 'sort_method', 'allow_select', 'hide_parallel', 'show_count', 'smarty'));
         $propbag->add('groups',        array('FRONTEND_VIEWS'));
     }
 
@@ -1245,6 +1245,13 @@ class serendipity_categories_plugin extends serendipity_plugin {
                 $propbag->add('default',     false);
                 break;
 
+            case 'show_count':
+                $propbag->add('type',        'boolean');
+                $propbag->add('name',        CATEGORY_PLUGIN_SHOWCOUNT);
+                $propbag->add('description', '');
+                $propbag->add('default',     false);
+                break;
+
             default:
                 return false;
         }
@@ -1267,6 +1274,24 @@ class serendipity_categories_plugin extends serendipity_plugin {
         $categories = serendipity_fetchCategories(empty($which_category) ? 'all' : $which_category, '', $sort);
         $title = $this->title;
 
+        $cat_count = array();
+        if (serendipity_db_bool($this->get_config('show_count'))) {
+            $cat_sql        = "SELECT c.categoryid, c.category_name, count(e.id) as postings
+                                            FROM {$serendipity['dbPrefix']}entrycat ec,
+                                                 {$serendipity['dbPrefix']}category c,
+                                                 {$serendipity['dbPrefix']}entries e
+                                            WHERE ec.categoryid = c.categoryid AND ec.entryid = e.id
+                                            GROUP BY ec.categoryid, c.category_name
+                                            ORDER BY postings DESC";
+            $category_rows  = serendipity_db_query($cat_sql);
+            if (is_array($category_rows)) {
+                foreach($category_rows AS $cat) {
+                    $cat_count[$cat['categoryid']] = $cat['postings'];
+                }
+            }
+            
+        }
+
         $html       = '';
 
         if (!$smarty && $is_form) {
@@ -1320,6 +1345,11 @@ class serendipity_categories_plugin extends serendipity_plugin {
                 $categories[$cid]['feedCategoryURL'] = serendipity_feedCategoryURL($cat, 'serendipityHTTPPath');
                 $categories[$cid]['categoryURL']     = serendipity_categoryURL($cat, 'serendipityHTTPPath');
                 $categories[$cid]['paddingPx']       = $cat['depth']*6;
+                
+                if (!empty($cat_count[$cid])) {
+                    $categories[$cid]['true_category_name'] = $cat['category_name'];
+                    $categories[$cid]['category_name'] .= ' (' . $cat_count[$cid] . ')';
+                }
 
                 if (!$smarty) {
                     $html .= '<div style="padding-bottom: 2px;">';
@@ -1331,7 +1361,7 @@ class serendipity_categories_plugin extends serendipity_plugin {
                     if ( !empty($image) ) {
                         $html .= '<a href="'. $categories[$cid]['feedCategoryURL'] .'"><img src="'. $image .'" alt="XML" style="border: 0px" /></a> ';
                     }
-                    $html .= '<a href="'. $categories[$cid]['categoryURL'] .'" title="'. htmlspecialchars($cat['category_description']) .'" style="padding-left: '. $categories[$cid]['paddingPx'] .'px">'. htmlspecialchars($cat['category_name']) .'</a>';
+                    $html .= '<a href="'. $categories[$cid]['categoryURL'] .'" title="'. htmlspecialchars($cat['category_description']) .'" style="padding-left: '. $categories[$cid]['paddingPx'] .'px">'. htmlspecialchars($categories[$cid]['category_name']) .'</a>';
                     $html .= '</div>' . "\n";
                 }
             }
index a5216586badadae84928b2f844beb1602961faa8..198bb1ccf6f6b8e1e12e0fb7e35e7f9177a27d48 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_bg.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_bg.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2004 Bogomil Shopov <bogomil@spisanie.com>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index f88e6887796f72bd2a226270379d5ee16341a016..bc5658631258728157ea2c7893eccb8da8922619 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cn.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_cn.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index ceac710a9adad970eeeb3c0338117219d6d24fa8..448c6b42215ff8209ab4d6b7e07a78f004762a6c 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cs.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_cs.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # 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('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index f4d739c5d92f0fa779ba0bc19fe85f4593aa058b..2e5949ff9d8a37dd5e0d9583805cfb155410b2ff 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cz.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_cz.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index e39111e70d74885ed66481759d6bb978bdf3ffb5..884e580a082cf13e349c3bbe3ee32c51d0438336 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_da.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_da.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 18fb0429ee7e670502822d1b221a238319936c60..15bed7c764580512499f19deddcfbb440f8dcb37 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_de.inc.php 524 2005-10-04 10:11:02Z garvinhicking $
+<?php # $Id: serendipity_lang_de.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) Jannis Hermanns, Garvin Hicking and others
 @define('AUTHOR_PLUGIN_DESC', 'Zeigt die Liste aller Autoren');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Smarty-Templating aktivieren?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Falls diese Option aktiviert ist, wird das Kategorie-Plugin die Liste mittels Smarty-Templates ausgeben. Durch die Aktivierung der Option kann dann das Layout mittels der Template-Datei "plugin_categories.tpl" angepasst werden. Das Aktivieren dieser Option bringt Einbußungen bei der Performance mit sich, und daher sollten Sie die Option nur dann aktivieren, wenn ihnen die Anpassungen wichtig sind.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 237a1294f9bf28a931a49aca4d9aa68102f2d962..89ec4f2ec00430f2296e821ccbbc7f133ea0fb97 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_en.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_en.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 235d5ad518496d004f7eeaecc50aca6e545fbd6c..ecbcef69dfbbd117c2fdeb61ffa8f378e5f3ef88 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_es.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_es.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Luis Cervantes <LuisCervantes@ono.com>,
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 16e04c1131872911e30cc2db6925df25af3fd749..0b4c0a7fd978aa795a89c8fdcd2a63e866a519e8 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fa.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_fa.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved. See LICENSE file for licensing details
 # this translation, translated by Omid Mottaghi <http://oxygenws.com>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 802afee0a69715751bf6efe7a62bc3161ddb1bc6..c898b7f2da473bbd0f68d982dc3b0d6f3ffc0ba4 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fi.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_fi.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 8df80edf7ae96e435b71abeae102a3065424ff5d..6120586caf34d34e495f249f969c1c4950685df1 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fr.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_fr.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation by Sebastian Mordziol <argh@php-tools.net>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 60599f891cfd60b8075fdf25e5c636d523c89aa1..08ca03feb34707927d00773a87ebdec5f0cb6d6c 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 402d36c7b3bc8d3045fd1d04ccef34773050accd..c7c8f86d220de1f50a1e204e78dc02678bfe86be 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_is.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_is.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 2f4d3a01552e34d8b3ed35c40c5fe45fc7d89140..911845f52ee7757983788092766b7a2faa8f7d84 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_it.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_it.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Alessandro Pellizzari <alex@amiran.it>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index e74df9f236fe8788c567ca377ed0d2960ff4480c..6ee69df8e2ed01358dbd456aea6f97cb964ddbd6 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ja.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_ja.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 2004-2005.
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index e69363df05d93f1bacd7a446115f157f84cdf52e..0458ba49d123ed90714d6f490f0353d2940aec8f 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ko.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_ko.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by: Wesley Hwang-Chung <wesley96@gmail.com> 
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 105a10b9d98f3ae857fa189f1053f8d5761476bb..465aff4125c1585389f14317c3b84d8631708749 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_nl.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_nl.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index bb4790cca1b8550278bac2ff9a5d48b75d4c546c..aa08e58fee7434b629a5fad75ac75044c6bb6074 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_no.inc.php 526 2005-10-04 11:36:21Z garvinhicking $
+<?php # $Id: serendipity_lang_no.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 47e238f1d73e592c4ddd9a098e6faa48681d118a..a5342c9c6096669856199ecd518880fd416f672b 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_pt.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_pt.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Agner Olson <agner@agner.net> 
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index ff58fec70ffd0bd0ae99f1c2801235c8cc1e671d..4dc29a7f1dad261580896868d4b1e231ff0c58a5 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 8fd65e2d9d28f48e32dabb0040742a5ee853b1c4..843c408ed39f53b4cc14ec0fb2b00db95377968c 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 7b46470f4612a4103c0f0698934453a8a78ed850..6fbe049a0c7192ed726735c6899b7f24e803efb0 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ru.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_ru.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
@@ -795,3 +795,4 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 829bc0a8dccfdfa9132d04f907e57ef4684e7093..9e0e168ec9570060d4876b95231e700409b42ab2 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index bf0f47576f2343de5fdc4fa71cbcf50c9cba3600..fd3f7f9b92b9e80a90035de21b4ea664dcca0212 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tn.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_tn.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by CapriSkye <admin@capriskye.com>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 712f0cca45cced4fcc1a29147d5e471ecbcc2caf..ec4df91892bbc9fac3f47d6cdf6bc980ee3cd849 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tw.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_tw.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by CapriSkye <admin@capriskye.com>
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 68692367ed55668a79ef85b20c6bedd8223e39d0..8abf4b00f7c60f546869241c0f235f71d7cc103a 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_zh.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_zh.inc.php 541 2005-10-10 12:41:33Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index d3a896182c24daf0ba07ea2ea7017b08bfedad8c..b4417b409c4bd85efd61c2fa2849614c05ea0ed8 100644 (file)
@@ -1,2 +1 @@
-@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
-@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 8f65db19a7517955eab2cde8c5a4bc71347ee0f1..e687467f6a8abe09dfcbcd20d190691a334bd31e 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index ef7b7a78cc232804efb29f8f5f511b27b5b91f1b..a586d9d228c89168d6f80af6a15d25d034bb3367 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index f26b857932ad4b30b6c74285ec048dc936502f96..63594307059b2e86ad1fcac636c8a6f73646b780 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 3313ba0f35791d7df288bf06afd819a5ae83813a..bf5e9f31a97b0896538101bb69b284ef347ea12e 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index f318ccfd1917c8260bf947e94f5e0117d2c6f5ab..9b8e55f66f5b7bf869c950733e271ff443eb832f 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 5dd28663ac8d839c0c6425de716a9927d92d4e6b..af7ec867ab34d6033a157b73711fa723a9ced5fc 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Zeigt die Liste aller Autoren');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Smarty-Templating aktivieren?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Falls diese Option aktiviert ist, wird das Kategorie-Plugin die Liste mittels Smarty-Templates ausgeben. Durch die Aktivierung der Option kann dann das Layout mittels der Template-Datei "plugin_categories.tpl" angepasst werden. Das Aktivieren dieser Option bringt Einbußungen bei der Performance mit sich, und daher sollten Sie die Option nur dann aktivieren, wenn ihnen die Anpassungen wichtig sind.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 522951139dd6b6eb9ca99e0bad27b740c481e85f..e4d67fe44d280cd6efb7690f45538e09addecb2e 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 30689b2a0b39cd318cd7b1065d4b9cb1728f368c..632209eb88569da5459ec93f057b63f60a40cd61 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index c02277d3e7425f46658c9e5721e8881504027d46..cd4fe2e13fc2efcf92d98ece36640b1e4a9816a0 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 92cc121d46adbe7ba271810c32bdc48de7031dd9..a51dacc53ace04935d79d38cbc224b0cc2f20eae 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 44c5ec75ac58706b532be9e7d07854ac08e51c5e..8fc60726d4830a1613974ce3d2734265f08b1417 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index cb48eff2bf5b1be23f25def2fc889b5233c93513..178d9b5c01952bb0afd19b5e831216653a7ef6eb 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index fa2bfae886c8dfeaf8c4c0106bcd0dbb15f4a480..eadee0ae3b9192ef8ff4344ceb425e45af5473ef 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index c1805fa2d945c26e42d1d9bd7a517fdda7c21da5..d1be35a41c2fe3d7447101f63db85b709b9fde89 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 8c8cf18054bfac99c405c385edd2ae7fa8cddeb7..14358d70fa2f9ce15150860c7b96eb52f79bee43 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index c28209165a038bbe5059b565ece81ccdba28db6e..f22b14b4a52e93ef66cf05ab256bb6151b28fa52 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index ea51fec32d0605bb26a0b30587a2a8fd5b10ce06..2e1093e70e54c6d21ebdd6ab292ad7e40dbe3f36 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index a3a699dd997d71284d6f1a0cf5c40d25c1c608b3..7f7e97c63e4ddf704577bc5efeb82e6a7ecc97aa 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 62cccf64a6afe8ac45a3a3074c5962382785a9e3..121ed74cf4826679982d35669bff445e62df5085 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 131db5ba4e6f397f78a546151b1f0727ae5a7e29..4d6671174a8cfae3f8f9eb8a35495899943b8426 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 8fd65e2d9d28f48e32dabb0040742a5ee853b1c4..843c408ed39f53b4cc14ec0fb2b00db95377968c 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 0b9be08bb25abeebe96b8e8b35bd7304ff28fae6..371fb479a7965f0dc11e217670ff3788d4f62335 100644 (file)
@@ -795,3 +795,4 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 261252e7576a2b2d15cda756a27761b5d8f19f2e..83705532e78d6876df2234b473e56aec1ca555ac 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index fda660f87e74498e829e71bcfbfee5106fab01d3..87ebe93fd642de6388b57450782e3bc90bf43ca6 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index 6702b6f8a02cf03a0d92ef05777423726c730209..51db37f8ebbabed66387c52bc7b1f2b7160b3233 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');
index de9c033cdc1c4cfff5479f64a72a3942dcabb171..092f89fe3c5f24f0a56db0e810990c6312f7b050 100644 (file)
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
 @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
+@define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?');