Update description on plugins and lenguages files

This commit is contained in:
Diego Najar 2017-08-05 13:50:06 +02:00
parent 8362972b4f
commit 4b2ea853b8
44 changed files with 46 additions and 185 deletions

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "About",
"description": "Shows a little description about your site or yourself."
"description": "Show a small description about your site or about yourself."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "API",
"description": "Interface to interact with Bludit using HTTP protocol."
"description": "Interface to interact with Bludit using HTTP protocol. <br> Read more about this plugin on <a href=\"https://docs.bludit.com/en/api/introduction\">API Introduction</a>."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Categories",
"description": "Shows all categories."
"description": "Shows all categories on the system on the sidebar."
}
}

View File

@ -2,7 +2,7 @@
"plugin-data":
{
"name": "Disqus comment system",
"description": "Disqus is a blog comment hosting service for web sites. It's necessary to register on Disqus.com before using this plugin."
"description": "Disqus is a comment hosting service for web sites. <br> It's necessary to be registered on <a href=\"https://disqus.com\">Disqus</a> to use this service."
},
"disqus-shortname": "Disqus shortname",

View File

@ -2,9 +2,8 @@
"plugin-data":
{
"name": "Fixed pages",
"description": "Shows a list of pages, you can define the amount of items and the order depends of settings."
"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"

View File

@ -2,7 +2,7 @@
"plugin-data":
{
"name": "Google",
"description": "This plugin generate the meta tag to validate your site with Google Webmasters Tools and the JavaScript code to track your site with Google Analytics."
"description": "This plugin generates the necessary code for the following Google tools: Google Analytics, Google Tag Manager and Google Site Verification HTML Tag."
},
"google-webmasters-tools": "Google Webmasters tools",

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Links",
"description": "Show a list of links."
"description": "Shows a link list in the sidebar, you can modify these links in settings."
}
}

View File

@ -2,9 +2,9 @@
"author": "Bludit",
"email": "",
"website": "https://plugins.bludit.com",
"version": "1.5.2",
"releaseDate": "2016-05-28",
"version": "2.0",
"releaseDate": "2017-08-05",
"license": "MIT",
"compatible": "1.5.2",
"compatible": "2.0",
"notes": ""
}
}

View File

@ -5,7 +5,7 @@ class pluginMaintenanceMode extends Plugin {
public function init()
{
$this->dbFields = array(
'enable'=>0,
'enable'=>true,
'message'=>'Temporarily down for maintenance.'
);
}
@ -15,9 +15,11 @@ class pluginMaintenanceMode extends Plugin {
global $Language;
$html = '<div>';
$html .= '<input type="hidden" name="enable" value="0">';
$html .= '<input name="enable" id="jsenable" type="checkbox" value="1" '.($this->getDbField('enable')?'checked':'').'>';
$html .= '<label class="forCheckbox" for="jsenable">'.$Language->get('Enable maintenance mode').'</label>';
$html .= '<label>'.$Language->get('Enable maintenance mode').'</label>';
$html .= '<select name="enable">';
$html .= '<option value="true" '.($this->getValue('enable')===true?'selected':'').'>Enabled</option>';
$html .= '<option value="false" '.($this->getValue('enable')===false?'selected':'').'>Disabled</option>';
$html .= '</select>';
$html .= '</div>';
$html .= '<div>';
@ -28,9 +30,9 @@ class pluginMaintenanceMode extends Plugin {
return $html;
}
public function beforeSiteLoad()
public function beforeAll()
{
if($this->getDbField('enable')) {
if ($this->getDbField('enable')) {
exit( $this->getDbField('message') );
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Menu",
"description": "Show a menu organized by categories and pages."
"description": "Shows a menu on the sidebar, organized by categories and pages."
}
}
}

View File

@ -2,7 +2,7 @@
"plugin-data":
{
"name": "Pages",
"description": "Shows a list of pages, you can define the amount of items and the order depends of settings."
"description": "Shows a list of pages, you can define the amount of items. <br> The order of the pages is taken from the settings of Bludit."
},
"home-page": "Home page",

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Ping",
"description": "Ping the Feed of Bludit to share your site with other users."
"description": "Ping Bludit's feed to share your site with other users."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "RSS Feed",
"description": "This plugin generate a RSS Feed for your site."
"description": "This plugin generates an RSS feed of your site."
}
}

View File

@ -2,7 +2,7 @@
"plugin-data":
{
"name": "SimpleMDE",
"description": "A simple, beautiful, and embeddable JavaScript markdown editor by @WesCossick. Adapted by Diego Najar for Bludit."
"description": "Markdown editor, enable it to create some formatting code for your site."
},
"toolbar": "Toolbar",
"tab-size": "Tab size",

View File

@ -1,10 +1,10 @@
{
"author": "Tinymce",
"author": "Sparksuite",
"email": "",
"website": "https://github.com/NextStepWebs/simplemde-markdown-editor",
"version": "4",
"version": "1.11.2",
"releaseDate": "2016-06-14",
"license": "MIT",
"compatible": "2.0",
"notes": ""
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Sitemap",
"description": "This plugin generates a file sitemap.xml where you can list the web pages of your site to tell search engines about the organization of your site content."
"description": "This plugin generates a Sitemap.xml of your site."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Tags list",
"description": "Shows all tags."
"description": "Shows all tags on the sidebar."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "TinyMCE",
"description": "Tinymce is an easy HTML editor, with many plugins and very customizable."
"description": "HTML Editor for formatting content. This plugin needs a license, there are free and paid. <br> Read more about on <a href=\"https://www.tinymce.com\">Tinymce</a>."
}
}

View File

@ -2,9 +2,9 @@
"author": "TinyMCE",
"email": "",
"website": "https://www.tinymce.com",
"version": "4.4.3",
"releaseDate": "2016-02-19",
"version": "Latest",
"releaseDate": "",
"license": "GPL v2",
"compatible": "1.0,1.1,1.1.2,1.3,1.4,1.5.2",
"notes": ""
}
"compatible": "2.0",
"notes": "This plugin use the CDN of Tinymce to get the latest file, so is not possible to determinate the version and release date."
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Open Graph ви позволява да свържете вашето съдържание със социални мрежи."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Plugin zur Verwendung des Open Graph Protocols."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Plugin zur Verwendung des Open Graph Protocols."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Twitter Card",
"description": ""
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Mejora las publicaciones en las redes sociales con este plugin."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Permets à nimporte quelle page web de devenir lobjet enrichi dun graphe social. Par exemple, il est utilisé sur Facebook pour permettre à une page web de bénéficier des mêmes fonctionnalités que nimporte quel autre objet sur Facebook."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Open Graph protocol(OGP)を有効にすると、Webページがソーシャルグラフ上のリッチなオブジェクトになります。"
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "De Open Graph protocol kan van elke webpagina een rich object in een sociale grafiek maken."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Protokół Open Graph zezwala stronie na stosowanie meta tagów używanych w serwisach społecznościowych."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Протокол Open Graph дает возможность связывать свой контент с социальными сетями."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Open Graph",
"description": "Протокол Open Graph дозволяє ділитися будь-якою веб-сторінкою у соціальних мережах."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "開放社交關係圖",
"description": "開放社交關係圖協定可以讓任何網頁變成豐富的物件"
}
}

View File

@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Twitter Cards",
"description": "With Twitter Cards, you can attach rich photos, videos and media experiences to Tweets, helping to drive traffic to your website."
}
}

View File

@ -1,6 +1,6 @@
<?php
class pluginTwitterCard extends Plugin {
class pluginTwitterCards extends Plugin {
public function siteHead()
{
@ -39,7 +39,7 @@ class pluginTwitterCard extends Plugin {
break;
}
$html = PHP_EOL.'<!-- Twitter Card -->'.PHP_EOL;
$html = PHP_EOL.'<!-- Twitter Cards -->'.PHP_EOL;
$html .= '<meta property="twitter:card" content="'.$data['card'].'">'.PHP_EOL;
$html .= '<meta property="twitter:site" content="'.$data['site'].'">'.PHP_EOL;
$html .= '<meta property="twitter:title" content="'.$data['title'].'">'.PHP_EOL;

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "За мен",
"description": "Кратко описание за вашия сайт или за себе си."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Über",
"description": "Kurzer Text über die Website oder zu dir."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Über",
"description": "Kurzer Text über die Website oder zu dir."
}
}

View File

@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Version",
"description": "Show the current version and check for new updates"
"description": "Show the current version on the bottom-right of the admin panel, and check periodically for new Bludit releases."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Acerca de",
"description": "Breve descripción de ti mismo o sobre tu sitio."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "About",
"description": "サイトやあなた自身についての概要を表示します。"
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Over mij",
"description": "Een korte beschrijving over je site of jezelf."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "О блоге",
"description": "Небольшое описание о вашем сайте или о себя."
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Hakkında",
"description": "Senin veya siten hakkında kısa bilgiler"
}
}

View File

@ -1,7 +0,0 @@
{
"plugin-data":
{
"name": "Про блог",
"description": "Невеликий опис вашого сайту або про Вас."
}
}