This guide helps you migrate from the old tailrdigital/sulu-translations-bundle to the new phpro/sulu-translations-bundle.
First, remove the old package from your project:
composer remove tailrdigital/sulu-translations-bundleNext, install the new package:
composer require phpro/sulu-translations-bundleYou need to replace all references from tailr or tailrdigital to phpro.
You can do this with a simple find/replace (with preserve case) in your IDE.
The new package uses a different table name for storing translations.
You need to rename the existing table tailr_translations to phpro_translations.
You can do this with the following SQL command:
ALTER TABLE tailr_translations RENAME TO phpro_translations;Make sure that the package.json and lock file contains links to phpro instead of tailrdigital. Rebuild the Sulu admin to ensure all changes are applied:
bin/console sulu:admin:buildMake sure you've set the correct permissions in the Sulu admin for this package. Go to Settings > User Roles and enable the permissions (phpro_translations) you need. Afterwards you could find the translations view/panel via Settings > Manage translations.