Thank you for reporting this bug. We will make it our priority to review this report.
-
Ext User
[DUPE] Illegal char in some language files on line 7
Hi all,
In ExtJs 3.3.0 (and 3.2), on line 7 of the following language files, there is a useless character (i think) which looks like a dot in the middle of the line. I report it because it causes me some problems. I just delete it and it was ok.
src/locale/ext-lang-fr.js
src/locale/ext-lang-fr_CA.js
src/locale/ext-lang-hu.js
src/locale/ext-lang-pt_PT.js
src/locale/ext-lang-ru.js
src/locale/ext-lang-sr_RS.js
src/locale/ext-lang-vn.js
src/locale/ext-lang-zh_TW.js
-
Duplicate.
This is caused by a bug in JSBuilder2. It prepends an ISO-8859-1 header to every file, even if it is an UTF-8 file.
The invalid characters are the UTF-8 BOM. To fix the file these characters have to be moved to the beginning of the file (before the header).
-
Ext User