Update description on plugins and lenguages files
This commit is contained in:
parent
8362972b4f
commit
4b2ea853b8
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "About",
|
"name": "About",
|
||||||
"description": "Shows a little description about your site or yourself."
|
"description": "Show a small description about your site or about yourself."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "API",
|
"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>."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Categories",
|
"name": "Categories",
|
||||||
"description": "Shows all categories."
|
"description": "Shows all categories on the system on the sidebar."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Disqus comment system",
|
"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",
|
"disqus-shortname": "Disqus shortname",
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Fixed pages",
|
"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",
|
"home-page": "Home page",
|
||||||
"show-home-link": "Show home link",
|
"show-home-link": "Show home link",
|
||||||
"amount-of-items": "Amount of items"
|
"amount-of-items": "Amount of items"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Google",
|
"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",
|
"google-webmasters-tools": "Google Webmasters tools",
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Links",
|
"name": "Links",
|
||||||
"description": "Show a list of links."
|
"description": "Shows a link list in the sidebar, you can modify these links in settings."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "1.5.2",
|
"version": "2.0",
|
||||||
"releaseDate": "2016-05-28",
|
"releaseDate": "2017-08-05",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "1.5.2",
|
"compatible": "2.0",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
|
@ -5,7 +5,7 @@ class pluginMaintenanceMode extends Plugin {
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->dbFields = array(
|
$this->dbFields = array(
|
||||||
'enable'=>0,
|
'enable'=>true,
|
||||||
'message'=>'Temporarily down for maintenance.'
|
'message'=>'Temporarily down for maintenance.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -15,9 +15,11 @@ class pluginMaintenanceMode extends Plugin {
|
||||||
global $Language;
|
global $Language;
|
||||||
|
|
||||||
$html = '<div>';
|
$html = '<div>';
|
||||||
$html .= '<input type="hidden" name="enable" value="0">';
|
$html .= '<label>'.$Language->get('Enable maintenance mode').'</label>';
|
||||||
$html .= '<input name="enable" id="jsenable" type="checkbox" value="1" '.($this->getDbField('enable')?'checked':'').'>';
|
$html .= '<select name="enable">';
|
||||||
$html .= '<label class="forCheckbox" for="jsenable">'.$Language->get('Enable maintenance mode').'</label>';
|
$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>';
|
||||||
|
|
||||||
$html .= '<div>';
|
$html .= '<div>';
|
||||||
|
@ -28,7 +30,7 @@ class pluginMaintenanceMode extends Plugin {
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function beforeSiteLoad()
|
public function beforeAll()
|
||||||
{
|
{
|
||||||
if ($this->getDbField('enable')) {
|
if ($this->getDbField('enable')) {
|
||||||
exit( $this->getDbField('message') );
|
exit( $this->getDbField('message') );
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Menu",
|
"name": "Menu",
|
||||||
"description": "Show a menu organized by categories and pages."
|
"description": "Shows a menu on the sidebar, organized by categories and pages."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Pages",
|
"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",
|
"home-page": "Home page",
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Ping",
|
"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."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "RSS Feed",
|
"name": "RSS Feed",
|
||||||
"description": "This plugin generate a RSS Feed for your site."
|
"description": "This plugin generates an RSS feed of your site."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "SimpleMDE",
|
"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",
|
"toolbar": "Toolbar",
|
||||||
"tab-size": "Tab size",
|
"tab-size": "Tab size",
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"author": "Tinymce",
|
"author": "Sparksuite",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://github.com/NextStepWebs/simplemde-markdown-editor",
|
"website": "https://github.com/NextStepWebs/simplemde-markdown-editor",
|
||||||
"version": "4",
|
"version": "1.11.2",
|
||||||
"releaseDate": "2016-06-14",
|
"releaseDate": "2016-06-14",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "2.0",
|
"compatible": "2.0",
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Sitemap",
|
"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."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Tags list",
|
"name": "Tags list",
|
||||||
"description": "Shows all tags."
|
"description": "Shows all tags on the sidebar."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "TinyMCE",
|
"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>."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "TinyMCE",
|
"author": "TinyMCE",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://www.tinymce.com",
|
"website": "https://www.tinymce.com",
|
||||||
"version": "4.4.3",
|
"version": "Latest",
|
||||||
"releaseDate": "2016-02-19",
|
"releaseDate": "",
|
||||||
"license": "GPL v2",
|
"license": "GPL v2",
|
||||||
"compatible": "1.0,1.1,1.1.2,1.3,1.4,1.5.2",
|
"compatible": "2.0",
|
||||||
"notes": ""
|
"notes": "This plugin use the CDN of Tinymce to get the latest file, so is not possible to determinate the version and release date."
|
||||||
}
|
}
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Open Graph ви позволява да свържете вашето съдържание със социални мрежи."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Plugin zur Verwendung des Open Graph Protocols."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Plugin zur Verwendung des Open Graph Protocols."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Twitter Card",
|
|
||||||
"description": ""
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Mejora las publicaciones en las redes sociales con este plugin."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Permets à n’importe quelle page web de devenir l’objet enrichi d’un graphe social. Par exemple, il est utilisé sur Facebook pour permettre à une page web de bénéficier des mêmes fonctionnalités que n’importe quel autre objet sur Facebook."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Open Graph protocol(OGP)を有効にすると、Webページがソーシャルグラフ上のリッチなオブジェクトになります。"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Протокол Open Graph дает возможность связывать свой контент с социальными сетями."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Open Graph",
|
|
||||||
"description": "Протокол Open Graph дозволяє ділитися будь-якою веб-сторінкою у соціальних мережах."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "開放社交關係圖",
|
|
||||||
"description": "開放社交關係圖協定可以讓任何網頁變成豐富的物件"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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."
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class pluginTwitterCard extends Plugin {
|
class pluginTwitterCards extends Plugin {
|
||||||
|
|
||||||
public function siteHead()
|
public function siteHead()
|
||||||
{
|
{
|
||||||
|
@ -39,7 +39,7 @@ class pluginTwitterCard extends Plugin {
|
||||||
break;
|
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:card" content="'.$data['card'].'">'.PHP_EOL;
|
||||||
$html .= '<meta property="twitter:site" content="'.$data['site'].'">'.PHP_EOL;
|
$html .= '<meta property="twitter:site" content="'.$data['site'].'">'.PHP_EOL;
|
||||||
$html .= '<meta property="twitter:title" content="'.$data['title'].'">'.PHP_EOL;
|
$html .= '<meta property="twitter:title" content="'.$data['title'].'">'.PHP_EOL;
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "За мен",
|
|
||||||
"description": "Кратко описание за вашия сайт или за себе си."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Über",
|
|
||||||
"description": "Kurzer Text über die Website oder zu dir."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Über",
|
|
||||||
"description": "Kurzer Text über die Website oder zu dir."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,6 +2,6 @@
|
||||||
"plugin-data":
|
"plugin-data":
|
||||||
{
|
{
|
||||||
"name": "Version",
|
"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."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Acerca de",
|
|
||||||
"description": "Breve descripción de ti mismo o sobre tu sitio."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "About",
|
|
||||||
"description": "サイトやあなた自身についての概要を表示します。"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Over mij",
|
|
||||||
"description": "Een korte beschrijving over je site of jezelf."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "О блоге",
|
|
||||||
"description": "Небольшое описание о вашем сайте или о себя."
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Hakkında",
|
|
||||||
"description": "Senin veya siten hakkında kısa bilgiler"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"plugin-data":
|
|
||||||
{
|
|
||||||
"name": "Про блог",
|
|
||||||
"description": "Невеликий опис вашого сайту або про Вас."
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue