Hello, I just managed to solve it, there was just one more step left, here's a tip for anyone who needs it:
1. You need to modify in db, pss5_product_lang, increase length of the "name" to xxxx
2. prestashop\src\Core\Domain\Product\ProductSettings.php
public const MAX_NAME_LENGTH = xxxx;
3. prestashop\src\PrestaShopBundle\Form\Admin\Product\ProductInformation.php
new Assert\Length(['min' => 3, 'max' => xxxx]),
And its Done!
Thanks a Lot!