From: garvinhicking Date: Wed, 27 Apr 2005 12:52:33 +0000 (+0000) Subject: add new config option for nugget plugin X-Git-Tag: 0.9~495 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=280a9b5ee21b5e25c419e71323a5260c0e59fe19;p=s9y.git add new config option for nugget plugin --- diff --git a/docs/NEWS b/docs/NEWS index 2eaaaf9..e3f121a 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -3,6 +3,11 @@ Version 0.9 () ------------------------------------------------------------------------ + * Give HTML Nugget the option for a second "description" attribute + that is used in the Plugin Configuration section, so that HTML + nuggets with an empty title still display additional information + to distinct multiple nuggets from another (garvinhicking) + * New entryproperties plugin option: Hide an entry from the frontpage (garvinhicking) diff --git a/include/plugin_internal.inc.php b/include/plugin_internal.inc.php index 2c4ca7c..e0d40ae 100644 --- a/include/plugin_internal.inc.php +++ b/include/plugin_internal.inc.php @@ -850,13 +850,21 @@ class serendipity_html_nugget_plugin extends serendipity_plugin { function introspect(&$propbag) { $this->title = $this->get_config('title', $this->title); + $subtitle = $this->get_config('backend_title', ''); + if (!empty($subtitle)) { + $desc = '(' . $subtitle . ') ' . HOLDS_A_BLAHBLAH; + } else { + $desc = HOLDS_A_BLAHBLAH; + } + $propbag->add('name', HTML_NUGGET); - $propbag->add('description', HOLDS_A_BLAHBLAH); + $propbag->add('description', $desc); $propbag->add('stackable', true); $propbag->add('author', 'Serendipity Team'); $propbag->add('version', '1.0'); $propbag->add('configuration', array( 'title', + 'backend_title', 'content', 'markup', 'show_where' @@ -876,6 +884,13 @@ class serendipity_html_nugget_plugin extends serendipity_plugin { $propbag->add('default', ''); break; + case 'backend_title': + $propbag->add('type', 'string'); + $propbag->add('name', BACKEND_TITLE); + $propbag->add('description', BACKEND_TITLE_FOR_NUGGET); + $propbag->add('default', ''); + break; + case 'content': $propbag->add('type', 'html'); $propbag->add('name', CONTENT); @@ -909,7 +924,7 @@ class serendipity_html_nugget_plugin extends serendipity_plugin { { global $serendipity; - $title = $this->get_config('title'); + $title = $this->get_config('title') . '!'; $show_where = $this->get_config('show_where', 'both'); if ($show_where == 'extended' && (!isset($serendipity['GET']['id']) || !is_numeric($serendipity['GET']['id']))) { diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index c2963b2..01cb697 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -651,6 +651,9 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate + /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index 7cec8fa..188f115 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -665,6 +665,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index 9477ab2..b652589 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -667,6 +667,8 @@ @define('DELETE_HOTLINK_FILE', 'Vymazán odkazovaný soubor %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index 5d2b067..20537a4 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -667,6 +667,8 @@ @define('DELETE_HOTLINK_FILE', 'Vymazán odkazovaný soubor %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 77f69c5..7472e6d 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -667,6 +667,8 @@ @define('DELETE_HOTLINK_FILE', 'Slet den hotlinked fil ved navn %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Vis E-Mail adresser?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index b00da5d..1338a02 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -666,5 +666,8 @@ @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'E-Mail Adressen einbinden?'); @define('IMAGE_MORE_INPUT', 'Mehr Bilder hinzufügen'); +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate + /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index c991bec..fa03cd5 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -664,6 +664,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index 73cff57..960c7c0 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -669,6 +669,8 @@ @define('DELETE_HOTLINK_FILE', 'Borrado el recurso enlazado externamente con el nombre %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index 50a9600..e46eaf2 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -666,6 +666,8 @@ @define('DELETE_HOTLINK_FILE', 'لینک فایل %s حذف شد'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'آیا آدرس ایمیل ها دیده شود؟'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index 4b62ef5..43b27e1 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -664,6 +664,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index 3106253..ee843cd 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -669,7 +669,8 @@ @define('FETCH_METHOD_HOTLINK', 'Établir un hotlink au serveur'); @define('DELETE_HOTLINK_FILE', 'Effacer le fichier par hotlink nommé %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Afficher les adresses E-Mail?'); +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate -@define('IMAGE_MORE_INPUT', 'Add more images'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index 22ba7e2..3364d61 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -664,6 +664,8 @@ @define('DELETE_HOTLINK_FILE', 'Eyddi hotlinkaðri skrá, nefnd %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Sýna netföng?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index b07390b..47c8663 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -666,6 +666,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index 0a3b0d8..526ee47 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -666,6 +666,8 @@ Serendipity のアップグレードステージを無視しました。正し @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', '電子メールアドレスを表示しますか?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index 71c9b10..5291960 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -669,6 +669,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index 87b671c..cd3a66d 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -668,6 +668,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index e45d808..c14f42e 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -667,5 +667,7 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate ?> \ No newline at end of file diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index b2017be..e99b637 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -667,6 +667,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 49d346b..30a72bf 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -663,8 +663,9 @@ @define('FETCH_METHOD_HOTLINK', 'Leagă direct către server'); // Translate @define('DELETE_HOTLINK_FILE', 'Am şters fişierul legat direct cu numele %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Arată adresele de email?'); - @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index 2fffb5a..d60ec50 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -667,6 +667,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index a67ed03..18b354b 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -665,6 +665,8 @@ @define('DELETE_HOTLINK_FILE', '刪除盜連的檔案 %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', '顯示電子郵件嗎?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index 536c2be..6cfb806 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -665,6 +665,8 @@ @define('DELETE_HOTLINK_FILE', '§R°£µs³sªºÀÉ®× %s'); @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Åã¥Ü¹q¤l¶l¥ó¶Ü?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index aff3274..ad1394d 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -665,6 +665,8 @@ @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled %s'); // Translate @define('SYNDICATION_PLUGIN_SHOW_MAIL', 'Show E-Mail addresses?'); @define('IMAGE_MORE_INPUT', 'Add more images'); // Translate +@define('BACKEND_TITLE', 'Additional information in Plugin Configuration screen'); // Translate +@define('BACKEND_TITLE_FOR_NUGGET', 'Here you can define a custom string which is displayed in the Plugin Configuration screen together with the description of the HTML Nugget plugin. If you have multiple HTML nuggets with an empty title, this helps to distinct the plugins from another.'); // Translate /* vim: set sts=4 ts=4 expandtab : */ ?> \ No newline at end of file