Don't use single quotes on strings used in javascript functions.This creates problems:$_lang['SURE_DEL_USER'] = 'Sei sicuro? L\'utente sarà cancellato così come tutti i suoi commenti e articoli.';Use instead:$_lang['SURE_DEL_USER'] = 'Sei sicuro? L utente sarà cancellato così come tutti i suoi commenti e articoli.';
<?php $x = 'You don\'t need to by angry!';echo 'var test = \''.addslashes($x).'\';';?>
$_lang['ARTICLES_ON_CAT'] = "Articles on category %s";
$_lang['ARTICLES_ON_CAT'] = "Articoli nella categoria %s";