]> git.mjollnir.org Git - s9y.git/commitdiff
add new config option for nugget plugin
authorgarvinhicking <garvinhicking>
Wed, 27 Apr 2005 12:52:33 +0000 (12:52 +0000)
committergarvinhicking <garvinhicking>
Wed, 27 Apr 2005 12:52:33 +0000 (12:52 +0000)
25 files changed:
docs/NEWS
include/plugin_internal.inc.php
lang/serendipity_lang_bg.inc.php
lang/serendipity_lang_cn.inc.php
lang/serendipity_lang_cs.inc.php
lang/serendipity_lang_cz.inc.php
lang/serendipity_lang_da.inc.php
lang/serendipity_lang_de.inc.php
lang/serendipity_lang_en.inc.php
lang/serendipity_lang_es.inc.php
lang/serendipity_lang_fa.inc.php
lang/serendipity_lang_fi.inc.php
lang/serendipity_lang_fr.inc.php
lang/serendipity_lang_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_ro.inc.php
lang/serendipity_lang_ru.inc.php
lang/serendipity_lang_tn.inc.php
lang/serendipity_lang_tw.inc.php
lang/serendipity_lang_zh.inc.php

index 2eaaaf9bf5d6dd231fb7d1fe9b240b00b85a04c1..e3f121a8064e07fd5d5042f004b40c4f526528da 100644 (file)
--- 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)
 
index 2c4ca7ca9e0bb8de726d01a41bd28afd82f132ef..e0d40aed939c3d9daad8eb0d9ce80357c1041a10 100644 (file)
@@ -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']))) {
index c2963b23a3e705c1f2d215f0517db024d2d300fe..01cb697946ab10d6f19583c7a525e7efb2c95ab0 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 7cec8fa6983807fc880da5518f6cec1f006aa163..188f115449a537e868f484b1e41a66769fba96cd 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 9477ab268766d69ce68704c4152417e1dc993187..b652589adab39d6d96e8cbe327818b6b774660b6 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Vymazán odkazovaný soubor <b>%s</b>'); 
 @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
index 5d2b067284c45fe83879472d01eb47e8e564955c..20537a4b2917b2ef8e4f61af01bf41bdf51f602a 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Vymazán odkazovaný soubor <b>%s</b>'); 
 @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
index 77f69c526c98b7c104295e6dbf460f41bc5298aa..7472e6d91768906ba57fe1859f6c8b848bde6b88 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Slet den hotlinked fil ved navn <b>%s</b>');
 @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 : */
 ?>
index b00da5dda97334960413d5615cddae805ae2f5dd..1338a02c8cbcd4328e162066e9d1a0934e73a925 100644 (file)
 @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
index c991bec8b974c7a1a9efdca699b70e7ef0c81a18..fa03cd59e4482b05c15124551bdd0aceed13090f 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 73cff57eb71d7c4e7a9ee5088b38063346a29166..960c7c0d3f963a93da1430adae2e736bcc4b1317 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Borrado el recurso enlazado externamente con el nombre <b>%s</b>');
 @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
index 50a960034f80b3e11a0023d0b2f9cb5cdd4fdf95..e46eaf205434473fa2553f8b7a7bce7d1c2cae95 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'لینک فایل <b>%s</b> حذف شد');
 @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
index 4b62ef540186b47b351e3cecaf02fa50b75153ac..43b27e166d2be5d00a619b6719b29d4b855a915f 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 310625395e00db2bbd02b71490232d0f8787474e..ee843cd4520e941b0d2f3f8761000c881159fd45 100644 (file)
 @define('FETCH_METHOD_HOTLINK', 'Établir un hotlink au serveur');
 @define('DELETE_HOTLINK_FILE', 'Effacer le fichier par hotlink nommé <b>%s</b>');
 @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
index 22ba7e2428c216f04f99a813ada8a732e5af6caa..3364d61822342d7c4e6faf2ee2447c0a8c6dd7d9 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Eyddi hotlinkaðri skrá, nefnd <b>%s</b>');
 @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
index b07390bab1e28ed67d4e7793cc7aa3606e37b04e..47c8663ac40249f3dcbb09bd913176491155446c 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 0a3b0d831bffc2d38345fd7e2d4e76c6014eaadd..526ee47c20383c92b29454b885a699c28c991abb 100644 (file)
@@ -666,6 +666,8 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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 : */
 ?>
index 71c9b105b3b120606503092b1a64391fbf0f5878..5291960b87a775cb289da2a2f85ab5267a67b368 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 87b671cd0be6bc0fc2c24e94dbeb2e9668a13c60..cd3a66d93975b39e1a2b7ad97f24dfd4b46983c2 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index e45d8088b09c48f9d31dc8149cf84d265ec77a1f..c14f42e0a16f6bbcbd6b3cf49fb4a817f79ac9e0 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index b2017be09e1162e3b650b54ea232417be670cf69..e99b637892512fdea38fe9f4e8431a07b00a09a6 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index 49d346b31629a1aba9ed51f3d371d4e0a358160f..30a72bfb4af39e4d9785d2ca556bf70535f22a27 100644 (file)
 @define('FETCH_METHOD_HOTLINK', 'Leagă direct către server'); // Translate
 @define('DELETE_HOTLINK_FILE', 'Am şters fişierul legat direct cu numele <b>%s</b>'); // 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
index 2fffb5a4d3608d19db44cd5cbc1a1cf125d62a7e..d60ec509aadce8b835a396e32dcfffaad383d522 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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
index a67ed03ae310e0340b59718e9be6f46e601dc548..18b354bfe793cdf9b26a208babe391ce4db14496 100644 (file)
 @define('DELETE_HOTLINK_FILE', '刪除盜連的檔案 <b>%s</b>');
 @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
index 536c2be7bafb5e3a45b768d377bdcb0407f21c99..6cfb8060ac893d82e6f3918b788f71f8fe63debf 100644 (file)
 @define('DELETE_HOTLINK_FILE', '§R°£µs³sªºÀÉ®× <b>%s</b>');
 @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
index aff3274a1b7dc277b02be0ef1b0fbe75bc797ca7..ad1394d7b2c385d911eb015cb4879c30c8da4a6e 100644 (file)
 @define('DELETE_HOTLINK_FILE', 'Deleted the hotlinked file entitled <b>%s</b>'); // 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