While translating into another language noticed:
plugins/system/t3/admin/thememagic/thememagic.tpl.php
line 171 without the possibility of translating:
<h3>Save this theme as...</h3>
as well as line 19:
<html lang="en"> - that breaks down the encoding in my language
I thought to do something like this:
<?php
...
defined('_JEXEC') or die;
$lang =& JFactory::getLanguage();
?>
<!DOCTYPE html>
<html lang="<?php echo $lang->getTag();?>">
This works for me. Although maybe there's a better solution.
..Just wanted to share a little thing