Enable Catalan language

This commit is contained in:
Toni Prieto
2023-01-21 12:23:45 +01:00
parent 636b4f8a29
commit f6a95e692f
2 changed files with 4 additions and 0 deletions

View File

@@ -121,6 +121,9 @@ languages:
- code: en
label: English
active: true
- code: ca
label: Català
active: true
- code: cs
label: Čeština
active: true

View File

@@ -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 },