From 716cfff3e49d52af1d9f979dccc57189888d65ad Mon Sep 17 00:00:00 2001 From: flotsam Date: Tue, 8 Nov 2005 12:40:01 +0000 Subject: [PATCH] introduced CUSTOM_ADMIN_INTERFACE --- docs/NEWS | 4 ++++ include/admin/templates.inc.php | 3 ++- include/functions.inc.php | 9 +++++++++ lang/UTF-8/serendipity_lang_bg.inc.php | 1 + lang/UTF-8/serendipity_lang_cn.inc.php | 1 + lang/UTF-8/serendipity_lang_cs.inc.php | 1 + lang/UTF-8/serendipity_lang_cz.inc.php | 1 + lang/UTF-8/serendipity_lang_da.inc.php | 1 + lang/UTF-8/serendipity_lang_de.inc.php | 1 + lang/UTF-8/serendipity_lang_en.inc.php | 1 + lang/UTF-8/serendipity_lang_es.inc.php | 1 + lang/UTF-8/serendipity_lang_fa.inc.php | 1 + lang/UTF-8/serendipity_lang_fi.inc.php | 1 + lang/UTF-8/serendipity_lang_fr.inc.php | 3 ++- lang/UTF-8/serendipity_lang_hu.inc.php | 1 + lang/UTF-8/serendipity_lang_is.inc.php | 3 ++- lang/UTF-8/serendipity_lang_it.inc.php | 1 + lang/UTF-8/serendipity_lang_ja.inc.php | 1 + lang/UTF-8/serendipity_lang_ko.inc.php | 1 + lang/UTF-8/serendipity_lang_nl.inc.php | 1 + lang/UTF-8/serendipity_lang_no.inc.php | 1 + lang/UTF-8/serendipity_lang_pt.inc.php | 1 + lang/UTF-8/serendipity_lang_pt_PT.inc.php | 1 + lang/UTF-8/serendipity_lang_ro.inc.php | 1 + lang/UTF-8/serendipity_lang_ru.inc.php | 1 + lang/UTF-8/serendipity_lang_se.inc.php | 1 + lang/UTF-8/serendipity_lang_tn.inc.php | 1 + lang/UTF-8/serendipity_lang_tw.inc.php | 3 ++- lang/UTF-8/serendipity_lang_zh.inc.php | 1 + lang/serendipity_lang_bg.inc.php | 1 + lang/serendipity_lang_cn.inc.php | 1 + lang/serendipity_lang_cs.inc.php | 1 + lang/serendipity_lang_cz.inc.php | 1 + lang/serendipity_lang_da.inc.php | 1 + lang/serendipity_lang_de.inc.php | 1 + lang/serendipity_lang_en.inc.php | 1 + lang/serendipity_lang_es.inc.php | 1 + lang/serendipity_lang_fa.inc.php | 1 + lang/serendipity_lang_fi.inc.php | 1 + lang/serendipity_lang_fr.inc.php | 3 ++- lang/serendipity_lang_hu.inc.php | 1 + lang/serendipity_lang_is.inc.php | 3 ++- lang/serendipity_lang_it.inc.php | 1 + lang/serendipity_lang_ja.inc.php | 1 + lang/serendipity_lang_ko.inc.php | 1 + lang/serendipity_lang_nl.inc.php | 1 + lang/serendipity_lang_no.inc.php | 1 + lang/serendipity_lang_pt.inc.php | 1 + lang/serendipity_lang_pt_PT.inc.php | 1 + lang/serendipity_lang_ro.inc.php | 1 + lang/serendipity_lang_ru.inc.php | 1 + lang/serendipity_lang_se.inc.php | 1 + lang/serendipity_lang_tn.inc.php | 1 + lang/serendipity_lang_tw.inc.php | 3 ++- lang/serendipity_lang_zh.inc.php | 1 + 55 files changed, 73 insertions(+), 7 deletions(-) diff --git a/docs/NEWS b/docs/NEWS index c92c4c3..13bbb3b 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -10,6 +10,10 @@ Version 1.0 () * Fix certain plugins to correctly behave when using entry- properties caching, by re-executing plugins that were not executed because they "scramble" the true content. (garvinhicking) + + * Introduced CUSTOM_ADMIN_INTERFACE that tells the user if the + template author also made a stylesheet for the admin interface + when selecting a theme (flotsam) Version 0.9.1 () ------------------------------------------------------------------------ diff --git a/include/admin/templates.inc.php b/include/admin/templates.inc.php index dea9b86..fe35fcc 100644 --- a/include/admin/templates.inc.php +++ b/include/admin/templates.inc.php @@ -94,7 +94,8 @@ if ($serendipity['GET']['adminAction'] == 'install' ) { :
- : + :
+ :
diff --git a/include/functions.inc.php b/include/functions.inc.php index b8db1d1..dbab673 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -130,6 +130,15 @@ function serendipity_fetchTemplateInfo($theme, $abspath = null) { $data[$k] = implode("\n", $v); } + if ( $theme != 'default' && $theme != 'default-rtl' + && @is_dir($serendipity['templatePath'] . $theme . '/admin') + && @is_readable($serendipity['templatePath'] . $theme . '/admin/style.css') ) { + + $data['custom_admin_interface'] = YES; + } else { + $data['custom_admin_interface'] = NO; + } + return $data; } diff --git a/lang/UTF-8/serendipity_lang_bg.inc.php b/lang/UTF-8/serendipity_lang_bg.inc.php index d9da078..896bd07 100644 --- a/lang/UTF-8/serendipity_lang_bg.inc.php +++ b/lang/UTF-8/serendipity_lang_bg.inc.php @@ -783,3 +783,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Показване на броя на статиите в категория?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Показване на броя на статиите до името на автора?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Ако тази опция е активирана, броят на статиите от този автор ще бъде показан до името на автора в скоби.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_cn.inc.php b/lang/UTF-8/serendipity_lang_cn.inc.php index b8259a7..e3678a3 100644 --- a/lang/UTF-8/serendipity_lang_cn.inc.php +++ b/lang/UTF-8/serendipity_lang_cn.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_cs.inc.php b/lang/UTF-8/serendipity_lang_cs.inc.php index 80fed70..6347d40 100644 --- a/lang/UTF-8/serendipity_lang_cs.inc.php +++ b/lang/UTF-8/serendipity_lang_cs.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_cz.inc.php b/lang/UTF-8/serendipity_lang_cz.inc.php index 99a215f..2ea7f38 100644 --- a/lang/UTF-8/serendipity_lang_cz.inc.php +++ b/lang/UTF-8/serendipity_lang_cz.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_da.inc.php b/lang/UTF-8/serendipity_lang_da.inc.php index 6301a45..05c39c7 100644 --- a/lang/UTF-8/serendipity_lang_da.inc.php +++ b/lang/UTF-8/serendipity_lang_da.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_de.inc.php b/lang/UTF-8/serendipity_lang_de.inc.php index 52e1034..16ecf9c 100644 --- a/lang/UTF-8/serendipity_lang_de.inc.php +++ b/lang/UTF-8/serendipity_lang_de.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Angepasste Admin-Oberfläche vorhanden'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_en.inc.php b/lang/UTF-8/serendipity_lang_en.inc.php index b25189a..4d051ea 100644 --- a/lang/UTF-8/serendipity_lang_en.inc.php +++ b/lang/UTF-8/serendipity_lang_en.inc.php @@ -795,3 +795,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_es.inc.php b/lang/UTF-8/serendipity_lang_es.inc.php index 1320cec..636c906 100644 --- a/lang/UTF-8/serendipity_lang_es.inc.php +++ b/lang/UTF-8/serendipity_lang_es.inc.php @@ -815,3 +815,4 @@ Next constants should be placed with its brothers, right? @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Mostrar número de entradas por categoría?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Mostrar número de artículos del autor?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si esta opción es activada, el número de artículos del autor se muestra al lado del nombre del autor en paréntesis.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_fa.inc.php b/lang/UTF-8/serendipity_lang_fa.inc.php index 400f569..dc645dd 100644 --- a/lang/UTF-8/serendipity_lang_fa.inc.php +++ b/lang/UTF-8/serendipity_lang_fa.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'آیا تعداد ارسال های هر موضوع در مقابل نام آن نمایش داده شود؟'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'آیا تعداد ارسال های هر نویسنده در مقابل نام وی نمایش داده شود؟'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'اگر این گزینه فعال باشد، تعداد ارسال های یک نویسنده، جلوی نام وی، داخل پرانتز، نمایش داده می شود.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_fi.inc.php b/lang/UTF-8/serendipity_lang_fi.inc.php index 8517dff..0869839 100644 --- a/lang/UTF-8/serendipity_lang_fi.inc.php +++ b/lang/UTF-8/serendipity_lang_fi.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_fr.inc.php b/lang/UTF-8/serendipity_lang_fr.inc.php index 3f2e417..9c4997c 100644 --- a/lang/UTF-8/serendipity_lang_fr.inc.php +++ b/lang/UTF-8/serendipity_lang_fr.inc.php @@ -801,4 +801,5 @@ @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Si cette option est activée, le plugin utilisera les fonctionnalités de Smarty pour afficher la liste des catégories. Cela permet de changer l\'affichage de la liste en modifiant le fichier "plugin_categories.tpl". N\'utilisez cette option que si vous avez besoin d\'adapter l\'affichage des catégories comme cette fonctionnalité a un impact sur les performances de votre blog.'); @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Afficher le nombre de billets par catégorie?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Afficher le nombre d\'articles par auteur?'); -@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si cette option est activée, le nombre de billets crées par cet auteur seront affichés à côté de son nom, entre parenthèses.'); \ No newline at end of file +@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si cette option est activée, le nombre de billets crées par cet auteur seront affichés à côté de son nom, entre parenthèses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_hu.inc.php b/lang/UTF-8/serendipity_lang_hu.inc.php index dbb5905..e69d481 100644 --- a/lang/UTF-8/serendipity_lang_hu.inc.php +++ b/lang/UTF-8/serendipity_lang_hu.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_is.inc.php b/lang/UTF-8/serendipity_lang_is.inc.php index c806331..103ee39 100644 --- a/lang/UTF-8/serendipity_lang_is.inc.php +++ b/lang/UTF-8/serendipity_lang_is.inc.php @@ -795,4 +795,5 @@ @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Ef þessi möguleiki er virkjaður mun viðbótin nýta Smarty-Templating möguleika til að sýna flokkalistana. Ef þú virkjar þetta geturðu breytt útlitinu í gegnum "plugin_categories.tpl" forsniðsskrána. Að virkja þennan möguleika mun hafa áhrif á afköst, svo ef þú þarft ekki að gera neinar sérsniðnar breytingar skaltu láta þetta vera óvirkjað.'); @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Sýna fjölda færsla í hverjum flokk?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Sýna fjölda greina við hliðina á nafni höfundar?'); -@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Ef þessi möguleiki er virkjaður mun fjöldi greina eftir þennan höfund vera sýndur við hliðina á nafni hans innan sviga.'); \ No newline at end of file +@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Ef þessi möguleiki er virkjaður mun fjöldi greina eftir þennan höfund vera sýndur við hliðina á nafni hans innan sviga.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_it.inc.php b/lang/UTF-8/serendipity_lang_it.inc.php index 9d3f573..b631eed 100644 --- a/lang/UTF-8/serendipity_lang_it.inc.php +++ b/lang/UTF-8/serendipity_lang_it.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_ja.inc.php b/lang/UTF-8/serendipity_lang_ja.inc.php index b0e151a..2138f44 100644 --- a/lang/UTF-8/serendipity_lang_ja.inc.php +++ b/lang/UTF-8/serendipity_lang_ja.inc.php @@ -799,3 +799,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'カテゴリ毎に表示するエントリの数は?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_ko.inc.php b/lang/UTF-8/serendipity_lang_ko.inc.php index dcb2cf7..f888733 100644 --- a/lang/UTF-8/serendipity_lang_ko.inc.php +++ b/lang/UTF-8/serendipity_lang_ko.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', '범주 당 글의 수 보이기'); @define('AUTHORS_SHOW_ARTICLE_COUNT', '작성자 이름 옆에 글의 수 보이기'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '사용할 경우, 각 작성자의 이름 옆 괄호 속에 해당 작성자가 쓴 글의 수를 표시합니다.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_nl.inc.php b/lang/UTF-8/serendipity_lang_nl.inc.php index c02c5e7..35a68f0 100644 --- a/lang/UTF-8/serendipity_lang_nl.inc.php +++ b/lang/UTF-8/serendipity_lang_nl.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_no.inc.php b/lang/UTF-8/serendipity_lang_no.inc.php index 6531cad..db4bb34 100644 --- a/lang/UTF-8/serendipity_lang_no.inc.php +++ b/lang/UTF-8/serendipity_lang_no.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_pt.inc.php b/lang/UTF-8/serendipity_lang_pt.inc.php index 69f6027..f357dd2 100644 --- a/lang/UTF-8/serendipity_lang_pt.inc.php +++ b/lang/UTF-8/serendipity_lang_pt.inc.php @@ -800,3 +800,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_pt_PT.inc.php b/lang/UTF-8/serendipity_lang_pt_PT.inc.php index 4e6d34b..8b20e7b 100644 --- a/lang/UTF-8/serendipity_lang_pt_PT.inc.php +++ b/lang/UTF-8/serendipity_lang_pt_PT.inc.php @@ -804,3 +804,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Mostrar número de entradas por categoria?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Mostrar número de artigos ao lado do nome nome do autor?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Se esta opção for activada, o número de artigos deste autor será mostrado entre parêntesis junto ao nome do autor.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_ro.inc.php b/lang/UTF-8/serendipity_lang_ro.inc.php index 1f2fee1..838c813 100644 --- a/lang/UTF-8/serendipity_lang_ro.inc.php +++ b/lang/UTF-8/serendipity_lang_ro.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_ru.inc.php b/lang/UTF-8/serendipity_lang_ru.inc.php index 4b2b6bb..962aa52 100644 --- a/lang/UTF-8/serendipity_lang_ru.inc.php +++ b/lang/UTF-8/serendipity_lang_ru.inc.php @@ -798,3 +798,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Показывать количество записей в каждой категории?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Показывать количество записей возле имени автора?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Если эта опция включена, то в скобках возле имени автора приводится общее число сделанных им записей.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_se.inc.php b/lang/UTF-8/serendipity_lang_se.inc.php index 6248213..8c9a2c6 100644 --- a/lang/UTF-8/serendipity_lang_se.inc.php +++ b/lang/UTF-8/serendipity_lang_se.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_tn.inc.php b/lang/UTF-8/serendipity_lang_tn.inc.php index 4cb5442..5f799e3 100644 --- a/lang/UTF-8/serendipity_lang_tn.inc.php +++ b/lang/UTF-8/serendipity_lang_tn.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', '顯示每個類別的文章數?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', '顯示作者的文章數?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '如果開啟這個設定,作者的文章數會顯示在名稱旁邊。'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_tw.inc.php b/lang/UTF-8/serendipity_lang_tw.inc.php index 67afd38..2ca3e7e 100644 --- a/lang/UTF-8/serendipity_lang_tw.inc.php +++ b/lang/UTF-8/serendipity_lang_tw.inc.php @@ -797,4 +797,5 @@ @define('CATEGORY_PLUGIN_TEMPLATE_DESC', '如果開啟這個選項,外掛會利用 Smarty-Templating 的功能來輸出類別列表。您也可以用 "plugin_categories.tpl" 的模版檔案來改變外觀。這個選項會減低網頁的顯示速度,如果您不做任何改變,最好關閉這個選項。'); @define('CATEGORY_PLUGIN_SHOWCOUNT', '顯示每個類別的文章數?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', '顯示作者的文章數?'); -@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '如果開啟這個設定,作者的文章數會顯示在名稱旁邊。'); \ No newline at end of file +@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '如果開啟這個設定,作者的文章數會顯示在名稱旁邊。'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/UTF-8/serendipity_lang_zh.inc.php b/lang/UTF-8/serendipity_lang_zh.inc.php index 8edabe0..e7156ed 100644 --- a/lang/UTF-8/serendipity_lang_zh.inc.php +++ b/lang/UTF-8/serendipity_lang_zh.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index 1ef829e..db4a22b 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -783,3 +783,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Ïîêàçâàíå íà áðîÿ íà ñòàòèèòå â êàòåãîðèÿ?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Ïîêàçâàíå íà áðîÿ íà ñòàòèèòå äî èìåòî íà àâòîðà?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Àêî òàçè îïöèÿ å àêòèâèðàíà, áðîÿò íà ñòàòèèòå îò òîçè àâòîð ùå áúäå ïîêàçàí äî èìåòî íà àâòîðà â ñêîáè.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index a985544..27b3ef1 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index df5f86b..0e3f043 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index 0400940..d7a0d32 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 0cf6e09..2596f20 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index ebe2f94..ece2bca 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Angepasste Admin-Oberfläche vorhanden'); \ No newline at end of file diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index eb05823..04d9308 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -795,3 +795,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index 9e3c19b..1f6027d 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -815,3 +815,4 @@ Next constants should be placed with its brothers, right? @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Mostrar número de entradas por categoría?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Mostrar número de artículos del autor?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si esta opción es activada, el número de artículos del autor se muestra al lado del nombre del autor en paréntesis.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index 5b7a791..57d9d8d 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'آیا تعداد ارسال های هر موضوع در مقابل نام آن نمایش داده شود؟'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'آیا تعداد ارسال های هر نویسنده در مقابل نام وی نمایش داده شود؟'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'اگر این گزینه فعال باشد، تعداد ارسال های یک نویسنده، جلوی نام وی، داخل پرانتز، نمایش داده می شود.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index 60ad493..4d8b5c6 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index 06ebbd3..564ed41 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -801,4 +801,5 @@ @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Si cette option est activée, le plugin utilisera les fonctionnalités de Smarty pour afficher la liste des catégories. Cela permet de changer l\'affichage de la liste en modifiant le fichier "plugin_categories.tpl". N\'utilisez cette option que si vous avez besoin d\'adapter l\'affichage des catégories comme cette fonctionnalité a un impact sur les performances de votre blog.'); @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Afficher le nombre de billets par catégorie?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Afficher le nombre d\'articles par auteur?'); -@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si cette option est activée, le nombre de billets crées par cet auteur seront affichés à côté de son nom, entre parenthèses.'); \ No newline at end of file +@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si cette option est activée, le nombre de billets crées par cet auteur seront affichés à côté de son nom, entre parenthèses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_hu.inc.php b/lang/serendipity_lang_hu.inc.php index 6d2052c..2631634 100644 --- a/lang/serendipity_lang_hu.inc.php +++ b/lang/serendipity_lang_hu.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index 15b1cde..9c3091a 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -795,4 +795,5 @@ @define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Ef þessi möguleiki er virkjaður mun viðbótin nýta Smarty-Templating möguleika til að sýna flokkalistana. Ef þú virkjar þetta geturðu breytt útlitinu í gegnum "plugin_categories.tpl" forsniðsskrána. Að virkja þennan möguleika mun hafa áhrif á afköst, svo ef þú þarft ekki að gera neinar sérsniðnar breytingar skaltu láta þetta vera óvirkjað.'); @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Sýna fjölda færsla í hverjum flokk?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Sýna fjölda greina við hliðina á nafni höfundar?'); -@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Ef þessi möguleiki er virkjaður mun fjöldi greina eftir þennan höfund vera sýndur við hliðina á nafni hans innan sviga.'); \ No newline at end of file +@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Ef þessi möguleiki er virkjaður mun fjöldi greina eftir þennan höfund vera sýndur við hliðina á nafni hans innan sviga.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index 15ae8e3..d393f4f 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index e1c66be..7f900ed 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -799,3 +799,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'カテゴリ毎に表示するエントリの数は?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index effd0a5..ae119f3 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', '범주 당 글의 수 보이기'); @define('AUTHORS_SHOW_ARTICLE_COUNT', '작성자 이름 옆에 글의 수 보이기'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '사용할 경우, 각 작성자의 이름 옆 괄호 속에 해당 작성자가 쓴 글의 수를 표시합니다.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index 27d99ae..0c98838 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index afe3fff..2da660c 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index 0397d76..1ee32e8 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -800,3 +800,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_pt_PT.inc.php b/lang/serendipity_lang_pt_PT.inc.php index 7348169..3cd0e90 100644 --- a/lang/serendipity_lang_pt_PT.inc.php +++ b/lang/serendipity_lang_pt_PT.inc.php @@ -804,3 +804,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Mostrar número de entradas por categoria?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Mostrar número de artigos ao lado do nome nome do autor?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Se esta opção for activada, o número de artigos deste autor será mostrado entre parêntesis junto ao nome do autor.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 1f2fee1..838c813 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index 406b301..a84020f 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -798,3 +798,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Показывать количество записей в каждой категории?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Показывать количество записей возле имени автора?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Если эта опция включена, то в скобках возле имени автора приводится общее число сделанных им записей.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_se.inc.php b/lang/serendipity_lang_se.inc.php index a2429b3..afa3246 100644 --- a/lang/serendipity_lang_se.inc.php +++ b/lang/serendipity_lang_se.inc.php @@ -797,3 +797,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index 956d592..34671c9 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -798,3 +798,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', '顯示每個類別的文章數?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', '顯示作者的文章數?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '如果開啟這個設定,作者的文章數會顯示在名稱旁邊。'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index 3e32b84..641a704 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -797,4 +797,5 @@ @define('CATEGORY_PLUGIN_TEMPLATE_DESC', '¦pªG¶}±Ò³o­Ó¿ï¶µ¡A¥~±¾·|§Q¥Î Smarty-Templating ªº¥\¯à¨Ó¿é¥XÃþ§O¦Cªí¡C±z¤]¥i¥H¥Î "plugin_categories.tpl" ªº¼Òª©ÀɮרӧïÅÜ¥~Æ[¡C³o­Ó¿ï¶µ·|´î§Cºô­¶ªºÅã¥Ü³t«×¡A¦pªG±z¤£°µ¥ô¦ó§ïÅÜ¡A³Ì¦nÃö³¬³o­Ó¿ï¶µ¡C'); @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Åã¥Ü¨C­ÓÃþ§Oªº¤å³¹¼Æ¡H'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Åã¥Ü§@ªÌªº¤å³¹¼Æ¡H'); -@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '¦pªG¶}±Ò³o­Ó³]©w¡A§@ªÌªº¤å³¹¼Æ·|Åã¥Ü¦b¦WºÙ®ÇÃä¡C'); \ No newline at end of file +@define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', '¦pªG¶}±Ò³o­Ó³]©w¡A§@ªÌªº¤å³¹¼Æ·|Åã¥Ü¦b¦WºÙ®ÇÃä¡C'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index 33d783a..466304b 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -796,3 +796,4 @@ @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Show number of entries per category?'); @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Show number of articles next to author name?'); @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'If this option is enabled, the number of articles by this author is shown next to the authors name in parentheses.'); +@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available'); \ No newline at end of file -- 2.39.5