diff --git a/config/config.example.yml b/config/config.example.yml index c548d6944a..af04859201 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -121,6 +121,9 @@ languages: - code: en label: English active: true + - code: ca + label: Català + active: true - code: cs label: Čeština active: true diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index d7b3efc2ed..205ea8acc0 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -190,6 +190,7 @@ export class DefaultAppConfig implements AppConfig { // When set to active, users will be able to switch to the use of this language in the user interface. languages: LangConfig[] = [ { code: 'en', label: 'English', active: true }, + { code: 'ca', label: 'Català', active: true }, { code: 'cs', label: 'Čeština', active: true }, { code: 'de', label: 'Deutsch', active: true }, { code: 'es', label: 'Español', active: true },