diff --git a/bl-plugins/about/languages/en_US.json b/bl-plugins/about/languages/en_US.json
index 1c429171..f1a28b7b 100644
--- a/bl-plugins/about/languages/en_US.json
+++ b/bl-plugins/about/languages/en_US.json
@@ -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."
}
}
\ No newline at end of file
diff --git a/bl-plugins/api/languages/en_US.json b/bl-plugins/api/languages/en_US.json
index 73a335fc..c7354f40 100644
--- a/bl-plugins/api/languages/en_US.json
+++ b/bl-plugins/api/languages/en_US.json
@@ -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.
Read more about this plugin on API Introduction."
}
}
\ No newline at end of file
diff --git a/bl-plugins/categories/languages/en_US.json b/bl-plugins/categories/languages/en_US.json
index 72e749cd..07598ae8 100644
--- a/bl-plugins/categories/languages/en_US.json
+++ b/bl-plugins/categories/languages/en_US.json
@@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Categories",
- "description": "Shows all categories."
+ "description": "Shows all categories on the system on the sidebar."
}
}
diff --git a/bl-plugins/disqus/languages/en_US.json b/bl-plugins/disqus/languages/en_US.json
index a917921c..49553e90 100644
--- a/bl-plugins/disqus/languages/en_US.json
+++ b/bl-plugins/disqus/languages/en_US.json
@@ -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.
It's necessary to be registered on Disqus to use this service."
},
"disqus-shortname": "Disqus shortname",
diff --git a/bl-plugins/fixed-pages/languages/en_US.json b/bl-plugins/fixed-pages/languages/en_US.json
index 12830ff0..275910e2 100644
--- a/bl-plugins/fixed-pages/languages/en_US.json
+++ b/bl-plugins/fixed-pages/languages/en_US.json
@@ -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"
diff --git a/bl-plugins/google/languages/en_US.json b/bl-plugins/google/languages/en_US.json
index bbe892ed..cfc6a1c4 100644
--- a/bl-plugins/google/languages/en_US.json
+++ b/bl-plugins/google/languages/en_US.json
@@ -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",
diff --git a/bl-plugins/links/languages/en_US.json b/bl-plugins/links/languages/en_US.json
index e421493a..571b443c 100644
--- a/bl-plugins/links/languages/en_US.json
+++ b/bl-plugins/links/languages/en_US.json
@@ -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."
}
}
diff --git a/bl-plugins/maintenance-mode/metadata.json b/bl-plugins/maintenance-mode/metadata.json
index 8801aa07..eec34733 100644
--- a/bl-plugins/maintenance-mode/metadata.json
+++ b/bl-plugins/maintenance-mode/metadata.json
@@ -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": ""
-}
+}
\ No newline at end of file
diff --git a/bl-plugins/maintenance-mode/plugin.php b/bl-plugins/maintenance-mode/plugin.php
index 5a36614e..4212b905 100644
--- a/bl-plugins/maintenance-mode/plugin.php
+++ b/bl-plugins/maintenance-mode/plugin.php
@@ -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 = '
';
@@ -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') );
}
}
diff --git a/bl-plugins/menu/languages/en_US.json b/bl-plugins/menu/languages/en_US.json
index 5f3395cf..eb82ee39 100644
--- a/bl-plugins/menu/languages/en_US.json
+++ b/bl-plugins/menu/languages/en_US.json
@@ -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."
}
-}
+}
\ No newline at end of file
diff --git a/bl-plugins/pages/languages/en_US.json b/bl-plugins/pages/languages/en_US.json
index 012064cd..9148df81 100644
--- a/bl-plugins/pages/languages/en_US.json
+++ b/bl-plugins/pages/languages/en_US.json
@@ -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.
The order of the pages is taken from the settings of Bludit."
},
"home-page": "Home page",
diff --git a/bl-plugins/ping/languages/en_US.json b/bl-plugins/ping/languages/en_US.json
index ef00bd20..7e420812 100644
--- a/bl-plugins/ping/languages/en_US.json
+++ b/bl-plugins/ping/languages/en_US.json
@@ -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."
}
}
\ No newline at end of file
diff --git a/bl-plugins/rss/languages/en_US.json b/bl-plugins/rss/languages/en_US.json
index efc4bc93..a13078ca 100644
--- a/bl-plugins/rss/languages/en_US.json
+++ b/bl-plugins/rss/languages/en_US.json
@@ -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."
}
}
\ No newline at end of file
diff --git a/bl-plugins/simplemde/languages/en_US.json b/bl-plugins/simplemde/languages/en_US.json
index 46d8cf5a..2bd8e75e 100644
--- a/bl-plugins/simplemde/languages/en_US.json
+++ b/bl-plugins/simplemde/languages/en_US.json
@@ -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",
diff --git a/bl-plugins/simplemde/metadata.json b/bl-plugins/simplemde/metadata.json
index 5a4aeaf1..2be69021 100644
--- a/bl-plugins/simplemde/metadata.json
+++ b/bl-plugins/simplemde/metadata.json
@@ -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": ""
-}
+}
\ No newline at end of file
diff --git a/bl-plugins/sitemap/languages/en_US.json b/bl-plugins/sitemap/languages/en_US.json
index 1cdb6cdf..cbba8ef7 100644
--- a/bl-plugins/sitemap/languages/en_US.json
+++ b/bl-plugins/sitemap/languages/en_US.json
@@ -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."
}
}
diff --git a/bl-plugins/tags/languages/en_US.json b/bl-plugins/tags/languages/en_US.json
index 292368be..05ddc098 100644
--- a/bl-plugins/tags/languages/en_US.json
+++ b/bl-plugins/tags/languages/en_US.json
@@ -2,6 +2,6 @@
"plugin-data":
{
"name": "Tags list",
- "description": "Shows all tags."
+ "description": "Shows all tags on the sidebar."
}
}
diff --git a/bl-plugins/tinymce/languages/en_US.json b/bl-plugins/tinymce/languages/en_US.json
index b36b0f3a..62d8e4d7 100644
--- a/bl-plugins/tinymce/languages/en_US.json
+++ b/bl-plugins/tinymce/languages/en_US.json
@@ -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.
Read more about on
Tinymce."
}
}
\ No newline at end of file
diff --git a/bl-plugins/tinymce/metadata.json b/bl-plugins/tinymce/metadata.json
index c052c2b0..60abbfec 100644
--- a/bl-plugins/tinymce/metadata.json
+++ b/bl-plugins/tinymce/metadata.json
@@ -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."
+}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/bg_BG.json b/bl-plugins/twitter-card/languages/bg_BG.json
deleted file mode 100644
index b8f89d08..00000000
--- a/bl-plugins/twitter-card/languages/bg_BG.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Open Graph ви позволява да свържете вашето съдържание със социални мрежи."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/de_CH.json b/bl-plugins/twitter-card/languages/de_CH.json
deleted file mode 100644
index d954200c..00000000
--- a/bl-plugins/twitter-card/languages/de_CH.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Plugin zur Verwendung des Open Graph Protocols."
- }
-}
diff --git a/bl-plugins/twitter-card/languages/de_DE.json b/bl-plugins/twitter-card/languages/de_DE.json
deleted file mode 100644
index 937d2e79..00000000
--- a/bl-plugins/twitter-card/languages/de_DE.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Plugin zur Verwendung des Open Graph Protocols."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/en_US.json b/bl-plugins/twitter-card/languages/en_US.json
deleted file mode 100644
index b30d887e..00000000
--- a/bl-plugins/twitter-card/languages/en_US.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Twitter Card",
- "description": ""
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/es_AR.json b/bl-plugins/twitter-card/languages/es_AR.json
deleted file mode 100644
index b154c459..00000000
--- a/bl-plugins/twitter-card/languages/es_AR.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Mejora las publicaciones en las redes sociales con este plugin."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/fr_FR.json b/bl-plugins/twitter-card/languages/fr_FR.json
deleted file mode 100644
index adcade7d..00000000
--- a/bl-plugins/twitter-card/languages/fr_FR.json
+++ /dev/null
@@ -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."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/ja_JP.json b/bl-plugins/twitter-card/languages/ja_JP.json
deleted file mode 100644
index bfa01ff9..00000000
--- a/bl-plugins/twitter-card/languages/ja_JP.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Open Graph protocol(OGP)を有効にすると、Webページがソーシャルグラフ上のリッチなオブジェクトになります。"
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/nl_NL.json b/bl-plugins/twitter-card/languages/nl_NL.json
deleted file mode 100644
index f490d38d..00000000
--- a/bl-plugins/twitter-card/languages/nl_NL.json
+++ /dev/null
@@ -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."
- }
-}
diff --git a/bl-plugins/twitter-card/languages/pl_PL.json b/bl-plugins/twitter-card/languages/pl_PL.json
deleted file mode 100644
index 41b92e0a..00000000
--- a/bl-plugins/twitter-card/languages/pl_PL.json
+++ /dev/null
@@ -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."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/languages/ru_RU.json b/bl-plugins/twitter-card/languages/ru_RU.json
deleted file mode 100644
index f88f1371..00000000
--- a/bl-plugins/twitter-card/languages/ru_RU.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Протокол Open Graph дает возможность связывать свой контент с социальными сетями."
- }
-}
diff --git a/bl-plugins/twitter-card/languages/uk_UA.json b/bl-plugins/twitter-card/languages/uk_UA.json
deleted file mode 100644
index 01fc7398..00000000
--- a/bl-plugins/twitter-card/languages/uk_UA.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Open Graph",
- "description": "Протокол Open Graph дозволяє ділитися будь-якою веб-сторінкою у соціальних мережах."
- }
-}
diff --git a/bl-plugins/twitter-card/languages/zh_TW.json b/bl-plugins/twitter-card/languages/zh_TW.json
deleted file mode 100644
index 0a59b71d..00000000
--- a/bl-plugins/twitter-card/languages/zh_TW.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "開放社交關係圖",
- "description": "開放社交關係圖協定可以讓任何網頁變成豐富的物件"
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/twitter-cards/languages/en_US.json b/bl-plugins/twitter-cards/languages/en_US.json
new file mode 100644
index 00000000..ab7d5f82
--- /dev/null
+++ b/bl-plugins/twitter-cards/languages/en_US.json
@@ -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."
+ }
+}
\ No newline at end of file
diff --git a/bl-plugins/twitter-card/metadata.json b/bl-plugins/twitter-cards/metadata.json
similarity index 100%
rename from bl-plugins/twitter-card/metadata.json
rename to bl-plugins/twitter-cards/metadata.json
diff --git a/bl-plugins/twitter-card/plugin.php b/bl-plugins/twitter-cards/plugin.php
similarity index 95%
rename from bl-plugins/twitter-card/plugin.php
rename to bl-plugins/twitter-cards/plugin.php
index 05006330..0cdfe143 100644
--- a/bl-plugins/twitter-card/plugin.php
+++ b/bl-plugins/twitter-cards/plugin.php
@@ -1,6 +1,6 @@
'.PHP_EOL;
+ $html = PHP_EOL.''.PHP_EOL;
$html .= '
'.PHP_EOL;
$html .= '
'.PHP_EOL;
$html .= '
'.PHP_EOL;
diff --git a/bl-plugins/version/languages/bg_BG.json b/bl-plugins/version/languages/bg_BG.json
deleted file mode 100644
index c12b1a39..00000000
--- a/bl-plugins/version/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/version/languages/de_CH.json b/bl-plugins/version/languages/de_CH.json
deleted file mode 100644
index 45a153ce..00000000
--- a/bl-plugins/version/languages/de_CH.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Über",
- "description": "Kurzer Text über die Website oder zu dir."
- }
-}
diff --git a/bl-plugins/version/languages/de_DE.json b/bl-plugins/version/languages/de_DE.json
deleted file mode 100644
index a226255d..00000000
--- a/bl-plugins/version/languages/de_DE.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Über",
- "description": "Kurzer Text über die Website oder zu dir."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/version/languages/en_US.json b/bl-plugins/version/languages/en_US.json
index 0671a39a..2195d434 100644
--- a/bl-plugins/version/languages/en_US.json
+++ b/bl-plugins/version/languages/en_US.json
@@ -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."
}
}
\ No newline at end of file
diff --git a/bl-plugins/version/languages/es_AR.json b/bl-plugins/version/languages/es_AR.json
deleted file mode 100644
index 22b6a7dd..00000000
--- a/bl-plugins/version/languages/es_AR.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Acerca de",
- "description": "Breve descripción de ti mismo o sobre tu sitio."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/version/languages/ja_JP.json b/bl-plugins/version/languages/ja_JP.json
deleted file mode 100644
index 353242d5..00000000
--- a/bl-plugins/version/languages/ja_JP.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "About",
- "description": "サイトやあなた自身についての概要を表示します。"
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/version/languages/nl_NL.json b/bl-plugins/version/languages/nl_NL.json
deleted file mode 100644
index ac7332d4..00000000
--- a/bl-plugins/version/languages/nl_NL.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Over mij",
- "description": "Een korte beschrijving over je site of jezelf."
- }
-}
diff --git a/bl-plugins/version/languages/ru_RU.json b/bl-plugins/version/languages/ru_RU.json
deleted file mode 100644
index 9854c7f3..00000000
--- a/bl-plugins/version/languages/ru_RU.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "О блоге",
- "description": "Небольшое описание о вашем сайте или о себя."
- }
-}
\ No newline at end of file
diff --git a/bl-plugins/version/languages/tr_TR.json b/bl-plugins/version/languages/tr_TR.json
deleted file mode 100644
index 9a256d61..00000000
--- a/bl-plugins/version/languages/tr_TR.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Hakkında",
- "description": "Senin veya siten hakkında kısa bilgiler"
- }
-}
diff --git a/bl-plugins/version/languages/uk_UA.json b/bl-plugins/version/languages/uk_UA.json
deleted file mode 100644
index 39cbf511..00000000
--- a/bl-plugins/version/languages/uk_UA.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "plugin-data":
- {
- "name": "Про блог",
- "description": "Невеликий опис вашого сайту або про Вас."
- }
-}
\ No newline at end of file