Fixing the translations - MiguelFieira/AMO-HANDBOEK GitHub Wiki

THIS PAGE IS NOT DONE YET, USE IT AT YOUR OWN RISK!

Symfony is a PHP framework for web applications and a set of reusable PHP components. Symfony is used by thousands of web applications (including BlaBlaCar.com and Spotify.com) and most of the popular PHP projects (including Drupal and Magento).

Fixing the tranlations

1. Go to confing/packages/translation.yaml

Map structure

2. Replace the code with the following

framework:
    default_locale: en
    translator:
        default_path: '%kernel.project_dir%/translations'
        fallbacks:
            - en

3. Open your terminal and run the following code

php bin/console cache:clear

4. Congrats! Your translations works as it should!

⚠️ **GitHub.com Fallback** ⚠️