Update UUID and fixed #432

This commit is contained in:
Diego Najar 2017-05-20 11:24:38 +02:00
parent 7f9094b25b
commit 40147ec634
2 changed files with 5 additions and 4 deletions

View File

@ -253,5 +253,6 @@
"save-as-draft": "Save as draft",
"slug": "slug",
"this-plugin-may-not-be-supported-by-this-version-of-bludit": "This plugin may not be supported by this version of Bludit",
"this-theme-may-not-be-supported-by-this-version-of-bludit": "This theme may not be supported by this version of Bludit"
"this-theme-may-not-be-supported-by-this-version-of-bludit": "This theme may not be supported by this version of Bludit",
"content-here-supports-markdown-and-html-code": "Content here. Supports Markdown and HTML code."
}

View File

@ -38,7 +38,7 @@ class pluginsimpleMDE extends Plugin {
$html .= '<input name="autosave" id="jsautosave" type="checkbox" value="1" '.($this->getDbField('autosave')?'checked':'').'>';
$html .= '<label class="forCheckbox" for="jsautosave">'.$Language->get('Autosave').'</label>';
$html .= '</div>';
$html .= '<div>';
$html .= '<input type="hidden" name="spellChecker" value="0">';
$html .= '<input name="spellChecker" id="jsspellChecker" type="checkbox" value="1" '.($this->getDbField('spellChecker')?'checked':'').'>';
@ -105,7 +105,7 @@ class pluginsimpleMDE extends Plugin {
// Spell Checker
$spellCheckerEnable = $this->getDbField('spellChecker')?'true':'false';
$pluginPath = $this->htmlPath();
$html = '<script>'.PHP_EOL;
@ -129,7 +129,7 @@ class pluginsimpleMDE extends Plugin {
toolbarTips: true,
toolbarGuideIcon: true,
autofocus: false,
placeholder: "Content here... Supports Markdown and HTML code.",
placeholder: "'.$Language->get('Content here Supports Markdown and HTML code').'",
lineWrapping: true,
autoDownloadFontAwesome: false,
indentWithTabs: true,