A bundle which enables editing translations in the admin interface without need for editing the translations files. Translations will be stored in a (default) database and retrieved on the most efficient way possible.
You should be able to get Symfony >=2.3 up and running before you can install the KunstmaanTranslatorBundle.
Assuming you have installed composer.phar or composer binary:
$ composer require kunstmaan/translator-bundle 2.3.*@dev
$ composer require doctrine/migrations dev-master
$ composer require doctrine/doctrine-migrations-bundle dev-master
Add the KunstmaanTranslatorBundle to your AppKernel.php file:
new Kunstmaan\TranslatorBundle\KunstmaanTranslatorBundle(),
new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
Add the KunstmaanTranslatorBundle to your routing.yml. Take your own routing into account, it's possible you will need to add the following code prior to your own routing configurations
KunstmaanTranslatorBundle:
resource: "@KunstmaanTranslatorBundle/Resources/config/routing.yml"
prefix: /{_locale}/
requirements:
_locale: "%requiredlocales%"
Overwrite the KunstmaanTranslatorBundle config to your needs in config.yml, these are the default values:
kunstmaan_translator:
enabled: true
default_bundle: own
bundles: []
cache_dir: %kernel.cache_dir%/translations
managed_locales: []
file_formats: ['yml', 'yaml', 'xliff']
debug: defaults to the kernel.debug parameter (boolean)
enabled
: Enabled or disable the KunstmaanTranslatorBundledefault_bundle
: Which bundles are used for the import functionality in the backend. Possible values: 'own', 'all', 'custom'.- own : All bundles in your src directory
- all : All bundles in your src directory + all bundles in your vendor directory
- custom : Only the bundles you specify in
bundles
bundles
: A list of bundles that will be used for the import functionality in the backend. Only used whendefault_bundle
is set to 'custom'.cache_dir
: Cached translations dirmanaged_locales
: Which locale translation files should be importedfile_formats
: Which type of translation files should be importeddebug
: When debug is enabled the translation caching is disabled
Example configurations:
kunstmaan_translator:
managed_locales: ['en', 'fr', 'es']
kunstmaan_translator:
default_bundle: own
managed_locales: ['en', 'fr', 'es']
debug: false
kunstmaan_translator:
enabled: true
default_bundle: custom
bundles: ['MyCompanyCoolBundle', 'MyCompanyAwesomeBundle']
managed_locales: ['en', 'fr', 'es']
Update your database schema with doctrine
bin/console doctrine:schema:update --force
Database schema updated successfully! "1" queries were executed
Use the following command to generate a doctrine migration with all new and updated translations from your current environment.
bin/console kuma:translator:migrations:diff
When you want to include these migrated translations into your (other) environment use the normal doctrine migrate command.
bin/console doctrine:migrations:migrate
When migrating your current project you can easily import the existing translation files.
Without parameters, all translations, locales from the current main
project will be included.
If you have already existing translations in the database with the same combination of 'domain', 'keyword', 'locale', non of them will be overwritten
bin/console kuma:translator:import
To force overwrite the existing translations in the stasher:
bin/console kuma:translator:import --force
To import translations from a specific bundle:
bin/console kuma:translator:import --bundle=superCoolNewApplicationBundle
To import only specific locales:
bin/console kuma:translator:import --locales=nl,fr,de
To import translations from the global Resources (app/Resources/translations)
bin/console kuma:translator:import --globals
Translations are stored in a database, but cached (as Symfony normally does) when not running in debug mode.
$kernel = new AppKernel('prod', false); // translations are cached an read from this cache
$kernel = new AppKernel('dev', true); // translations are always loaded from the stash (slower, more queries)
When editing translations in the backend changes aren't immediately visible on your website.
The backend will show a warning message when not newer or updated translations aren't loaded into the cache.
Click on the Refresh live
button to rebuild the cache.
Clear translation cache files, this will trigger a rebuild of the translation cache when visiting a page
bin/console kuma:translator:cache --flush
Request status of the current cache
bin/console kuma:translator:cache --status
When all translations are up to date, e.g when migrated all develop translations into production. You need to reset all the flags which mark translations as new or updated. Otherwise already migrated translations will be added into later migrations again (which can cause errors with inserts and unique keys)
bin/console kuma:translator:flag --reset
You probably don't always remember which keyword and/or domain your translations on specific pages are using. To solve this problem you can add an extra GET parameter to your request. Add ?transSource=1
to your url to see all sources of the translated labels.
You instead of "Hello world" you might see header.hello_world (messages)
. This means:
- keyword is header.hello_world
- domain is messages
The Symfony Profiler show the number of translations used on the current request:
When you click on this item, you can see all translations used on the current request and a link to add or edit them in the Kunstmaan Admin backend.
- Add translations (with keywords) in your template files (dev)
- Add the translations of (1) into your backend via "Add Translation" (dev)
- Repeat 1 & 2
- Create migrations diff
bin/console kuma:translator:migrations:diff
(dev) - Reset translation flags
bin/console kuma:translator:flag --reset
(dev) - Deploy your application
- Execute doctrine migrations
bin/console doctrine:migrations:migrate
(prod) - Edit/add translations (prod)
- When ready editing/adding, click
Refresh live
orbin/console kuma:translator:cache --flush
(prod) - Repeat 7 & 8 when editing/adding translations in prod
- Import current translations, click
Import -> Import
orbin/console kuma:translator:import
(prod/dev) - If you did 1 in dev, go to 4 of
"Workflow example (new project)"
, otherwise go to 7"Workflow example (new project)"
- Import bundle/global translations from any type of translation file
- Import only specific translations (onlu from console command)
- Force import to overwrite existing translations with same domain/keyword/locale
- Edit stored translations from the backend interface
- Add new translations from the backend interface
- Translations are cached (if debug is disabled)
- Warning when cached translations aren't up to date with the stored translations
- Clear translation cache to rebuild translations from the stored translations
- Newer or updated translations are flagged
- Create a Doctrine Migrations file with all flagged translations
- Reset all flagged translations (from console command)
- Clear and check translation cache from console command
- Check your page with the keyword and domain of all translations
Run unit tests
./vendor/bin/phpunit -c phpunit.xml.dist
Run PHP CS Fixer, after installing php-cs-fixer system wide
php-cs-fixer fix .
- Tag your exporter with `translation.exporter
- implement \Kunstmaan\TranslatorBundle\Service\Exporter\FileExporterInterface
NOTE : exporting isn't stable (yet)