- πΊπΈUnited States emptyvoid
I've got this issue in Drupal 9 and Drupal 10.
Having the body field or content fields with both editorial content as well as full HTML on larger pages causes this local field validation to fail every single time.I have to patch each release so that the 10,000+ records and updates will actually complete in my builds.
Most recent Patch attached.
This commits to both Drupal 9.5.10 and Drupal 10.1.2 - π«π·France andypost
Maybe increasing size of blob for MySQL could help here as both Sqlite and Pgsql has limit for blobs 1GB but Mysql only 64k
- π¨π¦Canada joseph.olstad
It would be worthwhile looking into increasing the blob size. With that said, 64kb for a locale string is very large.
When I manually replaced \r\n with \n and everything imported correctly with MySQL.
The issue is that the ckeditor outputs \r\n, perhaps a filter should be modified for the locale processing that treats \r\n the same as \n.Ideally the common web interface tools should be handled and understood the locale system.
It seems strange that we'd be translating strings of 64 kilobytes when we could have line items as was originally intended.
- π¨π¦Canada joseph.olstad
Alternatively, perhaps the config system could automatically convert \r\n to \n and then maybe the locale system perhaps would work correctly. Might be easy to create this patch.