diff --git a/config/config.example.yml b/config/config.example.yml index 3cb228b2e34..9abf167b901 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -145,6 +145,9 @@ languages: - code: nl label: Nederlands active: true + - code: pl + label: Polski + active: true - code: pt-PT label: Português active: true @@ -175,9 +178,6 @@ languages: - code: uk label: Yкраї́нська active: true - - code: pl - label: Polski - active: true # Browse-By Pages diff --git a/src/config/default-app-config.ts b/src/config/default-app-config.ts index bc8ff14e03c..276d2d71502 100644 --- a/src/config/default-app-config.ts +++ b/src/config/default-app-config.ts @@ -197,6 +197,7 @@ export class DefaultAppConfig implements AppConfig { { code: 'lv', label: 'Latviešu', active: true }, { code: 'hu', label: 'Magyar', active: true }, { code: 'nl', label: 'Nederlands', active: true }, + { code: 'pl', label: 'Polski', active: true }, { code: 'pt-PT', label: 'Português', active: true }, { code: 'pt-BR', label: 'Português do Brasil', active: true }, { code: 'fi', label: 'Suomi', active: true },