TYPO3 Exception 1278155988

Broken character in locallang files

This exception happens if you have invalid characters in a locallang.xlf file.

_Example_

Bad:

<trans-unit>
   <source>Bootstrap Package: Left & normal, 2 Columns</source>
</trans-unit>
Copied!

Good:

Wrap with CDATA to escape special characters.

<trans-unit>
   <source><![CDATA[Bootstrap Package: Left & normal, 2 Columns]]></source>
</trans-unit>
Copied!