fixed translation in javascript files

This commit is contained in:
janxb 2016-07-25 16:57:39 +02:00
parent 21f76faba3
commit 19cc09847d
3 changed files with 6 additions and 6 deletions

View File

@ -205,11 +205,11 @@ class HTML {
public static function bluditCoverImage($coverImage="")
{
global $L;
// Javascript code
include(PATH_JS.'bludit-cover-image.js');
global $L;
$style = '';
if(!empty($coverImage)) {
$style = 'background-image: url('.HTML_PATH_UPLOADS_THUMBNAILS.$coverImage.')';
@ -263,11 +263,11 @@ class HTML {
public static function bluditImagesV8()
{
global $L;
// Javascript code
include(PATH_JS.'bludit-images-v8.js');
global $L;
$html = '<!-- BLUDIT IMAGES V8 -->';
$html .= '
<div id="bludit-images-v8" class="uk-modal">

View File

@ -85,7 +85,7 @@ $(document).ready(function() {
},
notallowed: function(file, settings) {
alert("'.$L->g('Supported image file types').' "+settings.allow);
alert("<?php echo $L->g('error').'. '.$L->g('Supported image file types')?>: "+settings.allow);
}
};

View File

@ -58,7 +58,7 @@ $(document).ready(function() {
},
notallowed: function(file, settings) {
alert("'.$L->g('Supported image file types').' "+settings.allow);
alert("<?php echo $L->g('error').'. '.$L->g('Supported image file types')?>: "+settings.allow);
}
};