From f6a95e692ffc8643940c64f0206dead2eb7c64cf Mon Sep 17 00:00:00 2001 From: Toni Prieto Date: Sat, 21 Jan 2023 12:23:45 +0100 Subject: [PATCH] Enable Catalan language --- config/config.example.yml | 3 +++ src/config/default-app-config.ts | 1 + 2 files changed, 4 insertions(+) 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 },