lexik/translation-bundle

This bundle allows to import translation files content into the database and provide a GUI to edit translations.

Maintainers

Package info

github.com/lexik/LexikTranslationBundle

Type:symfony-bundle

pkg:composer/lexik/translation-bundle

Statistics

Installs: 2 732 478

Dependents: 21

Suggesters: 1

Stars: 435

Open Issues: 73

v8.0.3 2026-01-26 21:20 UTC

README

This Symfony bundle allows you to:

  • import translation files content into the database and provide a GUI to edit translations.
  • export translations from the database into files.
  • have an overview to check translation domains are completely translated.
  • add new translations in the database.

Build Status Latest Stable Version SensioLabsInsight

The idea is to:

  • write your translations files (xliff, yml or php) as usual for at least one language (the default language of your website for example).
  • load translations into the database by using a command line.
  • freely edit/add translation through an edition page.

The bundle overrides the translator service and provides a DatabaseLoader. Database translations content is loaded last so it overrides content from xliff, yml and php translations files. You can also export translations from the database into files in case you need to get translations files with the same content as the database.

Documentation

For installation and configuration refer to Resources/doc/index.md

Here is a little screen shot of the edition page :)

edition page screen

Development

The project provides a Makefile for common tasks (tests, static analysis, code style). See docs/development.md for:

  • How to use the Makefile (requires GNU Make, usually pre-installed on Linux and macOS).
  • Cross-platform: running the same commands on Windows (without Make) using Docker Compose.
  • Cache files (e.g. .php-cs-fixer.cache) are listed in .gitignore and are not committed; you can remove them locally if needed.

TESTING

Read the documentation for testing