diff --git a/bl-kernel/admin/controllers/about.php b/bl-kernel/admin/controllers/about.php index 9297c685..6b0c40e0 100644 --- a/bl-kernel/admin/controllers/about.php +++ b/bl-kernel/admin/controllers/about.php @@ -1,26 +1,4 @@ role()!=='admin') { - Alert::set($Language->g('you-do-not-have-sufficient-permissions')); - Redirect::page('admin', 'dashboard'); -} - -// ============================================================================ -// Functions -// ============================================================================ - -// ============================================================================ -// Main before POST -// ============================================================================ - -// ============================================================================ -// POST Method -// ============================================================================ - -// ============================================================================ -// Main after POST -// ============================================================================ +// Title of the page +$layout['title'] .= ' - '.$Language->g('About'); \ No newline at end of file diff --git a/bl-kernel/admin/controllers/add-user.php b/bl-kernel/admin/controllers/add-user.php index aa44caa0..159c8193 100644 --- a/bl-kernel/admin/controllers/add-user.php +++ b/bl-kernel/admin/controllers/add-user.php @@ -4,9 +4,9 @@ // Check role // ============================================================================ -if($Login->role()!=='admin') { - Alert::set($Language->g('you-do-not-have-sufficient-permissions')); - Redirect::page('admin', 'dashboard'); +if ($Login->role()!=='admin') { + Alert::set($Language->g('You do not have sufficient permissions')); + Redirect::page('dashboard'); } // ============================================================================ @@ -21,9 +21,8 @@ if($Login->role()!=='admin') { // POST Method // ============================================================================ -if( $_SERVER['REQUEST_METHOD'] == 'POST' ) -{ - if( createUser($_POST) ) { +if ($_SERVER['REQUEST_METHOD'] == 'POST') { + if (createUser($_POST)) { Redirect::page('users'); } } @@ -31,3 +30,6 @@ if( $_SERVER['REQUEST_METHOD'] == 'POST' ) // ============================================================================ // Main after POST // ============================================================================ + +// Title of the page +$layout['title'] .= ' - '.$Language->g('Add a new user'); \ No newline at end of file diff --git a/bl-kernel/admin/controllers/categories.php b/bl-kernel/admin/controllers/categories.php index 37794c32..0071384c 100644 --- a/bl-kernel/admin/controllers/categories.php +++ b/bl-kernel/admin/controllers/categories.php @@ -4,6 +4,11 @@ // Check role // ============================================================================ +if ($Login->role()!=='admin') { + Alert::set($Language->g('You do not have sufficient permissions')); + Redirect::page('dashboard'); +} + // ============================================================================ // Functions // ============================================================================ @@ -19,3 +24,6 @@ // ============================================================================ // Main after POST // ============================================================================ + +// Title of the page +$layout['title'] .= ' - '.$Language->g('Categories'); \ No newline at end of file diff --git a/bl-kernel/admin/controllers/configure-plugin.php b/bl-kernel/admin/controllers/configure-plugin.php index 8082c794..42c6d11b 100644 --- a/bl-kernel/admin/controllers/configure-plugin.php +++ b/bl-kernel/admin/controllers/configure-plugin.php @@ -4,8 +4,8 @@ // Check role // ============================================================================ -if($Login->role()!=='admin') { - Alert::set($Language->g('you-do-not-have-sufficient-permissions')); +if ($Login->role()!=='admin') { + Alert::set($Language->g('You do not have sufficient permissions')); Redirect::page('dashboard'); } @@ -59,3 +59,6 @@ if( $_SERVER['REQUEST_METHOD'] == 'POST' ) // ============================================================================ // Main after POST // ============================================================================ + +// Title of the page +$layout['title'] .= ' - '.$Language->g('Plugin').' - '.$plugin->name(); \ No newline at end of file diff --git a/bl-kernel/admin/controllers/dashboard.php b/bl-kernel/admin/controllers/dashboard.php index 6f0ba3f5..d8643075 100644 --- a/bl-kernel/admin/controllers/dashboard.php +++ b/bl-kernel/admin/controllers/dashboard.php @@ -101,11 +101,5 @@ // Try update Bludit //updateBludit(); -// Get draft pages -$_draftPages = array(); -foreach($pages as $Page) -{ - if(!$Page->published()) { - array_push($_draftPages, $Page); - } -} +// Title of the page +$layout['title'] .= ' - '.$Language->g('Dashboard'); \ No newline at end of file diff --git a/bl-kernel/admin/controllers/developers.php b/bl-kernel/admin/controllers/developers.php index f00846a2..bdf3ebf5 100644 --- a/bl-kernel/admin/controllers/developers.php +++ b/bl-kernel/admin/controllers/developers.php @@ -4,10 +4,16 @@ // Check role // ============================================================================ +if ($Login->role()!=='admin') { + Alert::set($Language->g('You do not have sufficient permissions')); + Redirect::page('dashboard'); +} + // ============================================================================ // Functions // ============================================================================ +// This function is used on the VIEW to show the tables function printTable($title, $array) { echo '
'; var_dump($array); @@ -497,6 +549,7 @@ function createUser($args) { function editSettings($args) { global $Site; global $Syslog; + global $Language; if (isset($args['language'])) { if ($args['language']!=$Site->language()) { @@ -509,13 +562,35 @@ function editSettings($args) { } } - if( $Site->set($args) ) { - // Add to syslog + if (isset($args['uriPage'])) { + $args['uriPage'] = Text::addSlashes($args['uriPage']); + } + if (isset($args['uriTag'])) { + $args['uriTag'] = Text::addSlashes($args['uriTag']); + } + if (isset($args['uriCategory'])) { + $args['uriCategory'] = Text::addSlashes($args['uriCategory']); + } + + if ($Site->set($args)) { + // Check current order-by if changed it reorder the content + if ($Site->orderBy()!=ORDER_BY) { + if ($Site->orderBy()=='date') { + $dbPages->sortByDate(); + } else { + $dbPages->sortByPosition(); + } + $dbPages->save(); + } + + // Add syslog $Syslog->add(array( 'dictionaryKey'=>'changes-on-settings', 'notes'=>'' )); + // Create alert + Alert::set($Language->g('The changes have been saved')); return true; } diff --git a/bl-languages/en.json b/bl-languages/en.json index 34eebc7d..4d34aa2f 100644 --- a/bl-languages/en.json +++ b/bl-languages/en.json @@ -18,7 +18,9 @@ "thanks-for-support-bludit": "Thanks for support Bludit", "upgrade-to-bludit-pro": "Upgrade to Bludit PRO", "language": "Language", + "plugin": "Plugin", "plugins": "Plugins", + "developers": "Developers", "themes": "Themes", "about": "About", "url": "URL", @@ -39,12 +41,14 @@ "manage-content": "Manage content", "add-new-content": "Add new content", "new-category": "New category", + "you-do-not-have-sufficient-permissions": "You do not have sufficient permissions", "add-a-new-user": "Add a new user", "url-associated-with-the-page": "URL associated with the page.", "language-and-timezone": "Language and timezone", "change-your-language-and-region-settings": "Change your language and region settings.", "notifications": "Notifications", - "plugin-installed": "Plugin installed", + "plugin-activated": "Plugin activated", + "plugin-deactivated": "Plugin deactivated", "new-theme-configured": "New theme configured", "changes-on-settings": "Changes on settings", "plugin-configured": "Plugin configured", @@ -188,5 +192,9 @@ "token": "Token", "current-status": "Current status", "upload-image": "Upload image", - "this-token-is-similar-to-your-password-you-should-not-share-it": "This token is similar to your password, you should not share it." + "this-token-is-similar-to-your-password-you-should-not-share-it": "This token is similar to your password, you should not share it.", + "the-changes-have-been-saved": "The changes have been saved", + "label": "Label", + "links": "Links", + "this-title-is-almost-always-used-in-the-sidebar-of-the-site": "This title is almost always used in the sidebar of the site." } \ No newline at end of file diff --git a/bl-plugins/about/plugin.php b/bl-plugins/about/plugin.php index dce9effa..30d4ecee 100644 --- a/bl-plugins/about/plugin.php +++ b/bl-plugins/about/plugin.php @@ -17,7 +17,7 @@ class pluginAbout extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; $html .= ''; diff --git a/bl-plugins/api/languages/en.json b/bl-plugins/api/languages/en.json index c7354f40..545bfa3e 100644 --- a/bl-plugins/api/languages/en.json +++ b/bl-plugins/api/languages/en.json @@ -3,5 +3,9 @@ { "name": "API", "description": "Interface to interact with Bludit using HTTP protocol.
Read more about this plugin on API Introduction." - } + }, + "api-token": "API Token", + "amount-of-pages": "Amount of pages", + "this-is-the-maximum-of-pages-to-return-when-you-call-to": "This is the maximum of pages to return when you call to /api/pages", + "this-token-is-for-read-only-and-is-regenerated-every-time-you-install-the-plugin": "This token is for read only and is regenerated every time you install the plugin" } \ No newline at end of file diff --git a/bl-plugins/api/languages/es.json b/bl-plugins/api/languages/es.json deleted file mode 100644 index ec517d10..00000000 --- a/bl-plugins/api/languages/es.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "API", - "description": "Interfaz para interactuar con Bludit mediante el protocolo HTTP." - } -} \ No newline at end of file diff --git a/bl-plugins/api/languages/nl_NL.json b/bl-plugins/api/languages/nl_NL.json deleted file mode 100644 index 43dbcd54..00000000 --- a/bl-plugins/api/languages/nl_NL.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "API", - "description": "Interface om te communiceren met Bludit via het HTTP protocol." - } -} diff --git a/bl-plugins/api/languages/ru_RU.json b/bl-plugins/api/languages/ru_RU.json deleted file mode 100644 index 83f36790..00000000 --- a/bl-plugins/api/languages/ru_RU.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "API", - "description": "Интерфейс для взаимодействия с Bludit через HTTP протокол." - } -} diff --git a/bl-plugins/api/languages/tr_TR.json b/bl-plugins/api/languages/tr_TR.json deleted file mode 100644 index c5e9506b..00000000 --- a/bl-plugins/api/languages/tr_TR.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "API", - "description": "Bludit'e HTTP protokolü üzerinden erişmek için arayüz." - } -} diff --git a/bl-plugins/api/languages/uk_UA.json b/bl-plugins/api/languages/uk_UA.json deleted file mode 100644 index 591254b8..00000000 --- a/bl-plugins/api/languages/uk_UA.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "API", - "description": "Інтерфейс для взаємодії з Bludit за допомогою протоколу HTTP." - } -} diff --git a/bl-plugins/api/plugin.php b/bl-plugins/api/plugin.php index 5a060b53..eaafb566 100644 --- a/bl-plugins/api/plugin.php +++ b/bl-plugins/api/plugin.php @@ -28,7 +28,7 @@ class pluginAPI extends Plugin { $html .= ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('The amount of pages to return when you call to /api/pages').''; + $html .= ''.$Language->get('This is the maximum of pages to return when you call to').''; $html .= ''; return $html; diff --git a/bl-plugins/categories/languages/en.json b/bl-plugins/categories/languages/en.json index 07598ae8..0b266caa 100644 --- a/bl-plugins/categories/languages/en.json +++ b/bl-plugins/categories/languages/en.json @@ -3,5 +3,7 @@ { "name": "Categories", "description": "Shows all categories on the system on the sidebar." - } + }, + "categories-without-content": "Categories without content", + "show-the-categories-without-content": "Show the categories without content." } diff --git a/bl-plugins/categories/plugin.php b/bl-plugins/categories/plugin.php index 8ffae222..b545621f 100644 --- a/bl-plugins/categories/plugin.php +++ b/bl-plugins/categories/plugin.php @@ -19,7 +19,7 @@ class pluginCategories extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; $html .= ''; diff --git a/bl-plugins/fixed-pages/languages/en.json b/bl-plugins/fixed-pages/languages/en.json index 275910e2..e2288666 100644 --- a/bl-plugins/fixed-pages/languages/en.json +++ b/bl-plugins/fixed-pages/languages/en.json @@ -4,7 +4,6 @@ "name": "Fixed pages", "description": "Shows the fixed pages on the sidebar, this plugin is useful when you want to create a blog with static pages." }, - "home-page": "Home page", - "show-home-link": "Show home link", - "amount-of-items": "Amount of items" + "home-link": "Home link", + "show-the-home-link-on-the-sidebar": "Show the home link on the sidebar." } \ No newline at end of file diff --git a/bl-plugins/fixed-pages/plugin.php b/bl-plugins/fixed-pages/plugin.php index bd14790b..bcfe8849 100644 --- a/bl-plugins/fixed-pages/plugin.php +++ b/bl-plugins/fixed-pages/plugin.php @@ -19,7 +19,7 @@ class pluginFixedPages extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; $html .= ''; diff --git a/bl-plugins/links/languages/en.json b/bl-plugins/links/languages/en.json index 571b443c..8b5278eb 100644 --- a/bl-plugins/links/languages/en.json +++ b/bl-plugins/links/languages/en.json @@ -3,5 +3,6 @@ { "name": "Links", "description": "Shows a link list in the sidebar, you can modify these links in settings." - } + }, + "add-a-new-link": "Add a new link" } diff --git a/bl-plugins/links/plugin.php b/bl-plugins/links/plugin.php index e90b0d65..bd0b2e3f 100644 --- a/bl-plugins/links/plugin.php +++ b/bl-plugins/links/plugin.php @@ -67,7 +67,7 @@ class pluginLinks extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; $html .= ''; diff --git a/bl-plugins/menu/plugin.php b/bl-plugins/menu/plugin.php index 1e443152..269a2f08 100644 --- a/bl-plugins/menu/plugin.php +++ b/bl-plugins/menu/plugin.php @@ -18,7 +18,7 @@ class pluginMenu extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; return $html; diff --git a/bl-plugins/pages/plugin.php b/bl-plugins/pages/plugin.php index fac35517..72da9ec3 100644 --- a/bl-plugins/pages/plugin.php +++ b/bl-plugins/pages/plugin.php @@ -20,7 +20,7 @@ class pluginPages extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; $html .= ''; diff --git a/bl-plugins/rss/languages/ar_MA.json b/bl-plugins/rss/languages/ar_MA.json deleted file mode 100644 index ca0383aa..00000000 --- a/bl-plugins/rss/languages/ar_MA.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "RSS Feed", - "description": "هذه الإضافة تساعد على توليد تغذية RSS لموقعك." - } -} \ No newline at end of file diff --git a/bl-plugins/rss/languages/en.json b/bl-plugins/rss/languages/en.json index a13078ca..d5e5bf0f 100644 --- a/bl-plugins/rss/languages/en.json +++ b/bl-plugins/rss/languages/en.json @@ -3,5 +3,6 @@ { "name": "RSS Feed", "description": "This plugin generates an RSS feed of your site." - } + }, + "amount-of-items-to-show-on-the-feed": "Amount of items to show on the feed." } \ No newline at end of file diff --git a/bl-plugins/rss/languages/es.json b/bl-plugins/rss/languages/es.json deleted file mode 100644 index a17b665f..00000000 --- a/bl-plugins/rss/languages/es.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "RSS Feed", - "description": "Este plugin genera contenido RSS Feed para su sitio." - } -} \ No newline at end of file diff --git a/bl-plugins/rss/languages/ja_JP.json b/bl-plugins/rss/languages/ja_JP.json deleted file mode 100644 index 16e3ac94..00000000 --- a/bl-plugins/rss/languages/ja_JP.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "RSS Feed", - "description": "サイトのRSSフィードを生成します。" - } -} \ No newline at end of file diff --git a/bl-plugins/rss/languages/nl_NL.json b/bl-plugins/rss/languages/nl_NL.json deleted file mode 100644 index e3e83ff7..00000000 --- a/bl-plugins/rss/languages/nl_NL.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "RSS Feed", - "description": "Deze plugin genereerd een RSS Feed voor je website." - } -} diff --git a/bl-plugins/rss/languages/ru_RU.json b/bl-plugins/rss/languages/ru_RU.json deleted file mode 100644 index 12fd3c91..00000000 --- a/bl-plugins/rss/languages/ru_RU.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "RSS Feed", - "description": "Этот плагин генерирует RSS трансляцию на сайте." - } -} diff --git a/bl-plugins/rss/languages/uk_UA.json b/bl-plugins/rss/languages/uk_UA.json deleted file mode 100644 index 49ec5882..00000000 --- a/bl-plugins/rss/languages/uk_UA.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "RSS-канал", - "description": "Цей плагін генерує RSS для вашого сайту." - } -} diff --git a/bl-plugins/rss/plugin.php b/bl-plugins/rss/plugin.php index be868bb6..ce170375 100644 --- a/bl-plugins/rss/plugin.php +++ b/bl-plugins/rss/plugin.php @@ -18,6 +18,7 @@ class pluginRSS extends Plugin { $html = ''; $html .= ''; $html .= ''; + $html .= ''.$Language->get('Amount of items to show on the feed').''; $html .= ''; return $html; diff --git a/bl-plugins/tags/languages/bg_BG.json b/bl-plugins/tags/languages/bg_BG.json deleted file mode 100644 index 29dda285..00000000 --- a/bl-plugins/tags/languages/bg_BG.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Етикети", - "description": "Покажи всички етикети." - } -} \ No newline at end of file diff --git a/bl-plugins/tags/languages/de_CH.json b/bl-plugins/tags/languages/de_CH.json deleted file mode 100644 index 5149f12d..00000000 --- a/bl-plugins/tags/languages/de_CH.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Anzeige aller Schlagwörter", - "description": "Anzeige aller Schlagwörter in der Seitenleiste (bei Themes mit Seitenleiste)." - } -} diff --git a/bl-plugins/tags/languages/de_DE.json b/bl-plugins/tags/languages/de_DE.json deleted file mode 100644 index 47f11970..00000000 --- a/bl-plugins/tags/languages/de_DE.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "plugin-data": - { - "name": "Anzeige aller Schlagwörter", - "description": "Anzeige aller Schlagwörter in der Seitenleiste (bei Themes mit Seitenleiste)." - }, - "sort-the-tag-list-by": "Sortierung der Schlagwörter nach", - "alphabetical-order": "Alphabetische Reihenfolge", - "number-of-times-each-tag-has-been-used": "Anzahl der Verwendung", - "date-each-tag-was-first-used": "Datum der ersten Verwendung" -} \ No newline at end of file diff --git a/bl-plugins/tags/languages/es.json b/bl-plugins/tags/languages/es.json deleted file mode 100644 index b72d0e55..00000000 --- a/bl-plugins/tags/languages/es.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Listado de tags", - "description": "Muestra los tags de forma ordenada y muestra la cantidad de posts asociados a un tag." - } -} \ No newline at end of file diff --git a/bl-plugins/tags/languages/fr_FR.json b/bl-plugins/tags/languages/fr_FR.json deleted file mode 100644 index 36575d23..00000000 --- a/bl-plugins/tags/languages/fr_FR.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Liste de mots clés", - "description": "Affiche la lise de tous les mots clés." - } -} \ No newline at end of file diff --git a/bl-plugins/tags/languages/ja_JP.json b/bl-plugins/tags/languages/ja_JP.json deleted file mode 100644 index 07f7cf95..00000000 --- a/bl-plugins/tags/languages/ja_JP.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "plugin-data": - { - "name": "Tags list", - "description": "すべてのタグを表示します。" - }, - "tag-sort-order": "タグ・リストの順番", - "tag-sort-alphabetical": "アルファベット順", - "tag-sort-count": "タグの利用回数順", - "tag-sort-date": "最初に利用されたタグ順" -} diff --git a/bl-plugins/tags/languages/nl_NL.json b/bl-plugins/tags/languages/nl_NL.json deleted file mode 100644 index 4c589af1..00000000 --- a/bl-plugins/tags/languages/nl_NL.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Tag lijst", - "description": "Toon alle tags." - } -} diff --git a/bl-plugins/tags/languages/pl_PL.json b/bl-plugins/tags/languages/pl_PL.json deleted file mode 100644 index ae5f30ad..00000000 --- a/bl-plugins/tags/languages/pl_PL.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Lista tagów", - "description": "Wyświetla wszystkie tagi w postaci listy." - } -} \ No newline at end of file diff --git a/bl-plugins/tags/languages/ru_RU.json b/bl-plugins/tags/languages/ru_RU.json deleted file mode 100644 index 21a372de..00000000 --- a/bl-plugins/tags/languages/ru_RU.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "plugin-data": - { - "name": "Список тегов", - "description": "Показывает все теги." - }, - "tag-sort-order": "Сортировать по", - "tag-sort-alphabetical": "алфавиту", - "tag-sort-count": "количеству", - "tag-sort-date": "дате" -} diff --git a/bl-plugins/tags/languages/tr_TR.json b/bl-plugins/tags/languages/tr_TR.json deleted file mode 100644 index 7e4d39b1..00000000 --- a/bl-plugins/tags/languages/tr_TR.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Tag listesi", - "description": "Bütün tagları gösterir." - } -} diff --git a/bl-plugins/tags/languages/uk_UA.json b/bl-plugins/tags/languages/uk_UA.json deleted file mode 100644 index 3d5a9861..00000000 --- a/bl-plugins/tags/languages/uk_UA.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugin-data": - { - "name": "Список тегів", - "description": "Показує всі теги." - } -} \ No newline at end of file diff --git a/bl-plugins/tags/plugin.php b/bl-plugins/tags/plugin.php index 03c4e5cc..5e51d2da 100644 --- a/bl-plugins/tags/plugin.php +++ b/bl-plugins/tags/plugin.php @@ -16,7 +16,7 @@ class pluginTags extends Plugin { $html = ''; $html .= ''; $html .= ''; - $html .= ''.$Language->get('Title of the plugin for the sidebar').''; + $html .= ''.$Language->get('This title is almost always used in the sidebar of the site').''; $html .= ''; return $html;