Translations

Application translations are stored inside config/translations directory. You can add new translation by duplicating messages.en.yaml file and renaming it to for example messages.nl.yaml. Then it is needed to translate all strings.

config/translations/messages.en.yaml
app:
    title: Application Title
    description: CRM & Project management

You can set default language in the file below. For our use case just rename en to nl.

config/services.yaml
parameters:
    locale: 'en'

Application does not support multi-language support.

Last updated