From c5533537410b5d231be16af5528b0ce8212548e7 Mon Sep 17 00:00:00 2001 From: Artur Date: Fri, 8 Nov 2024 22:07:32 +0100 Subject: [PATCH] Default to 'en' --- src/app/app.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 264c594..e9a6416 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -12,8 +12,8 @@ export class AppComponent { constructor( public translate: TranslateService ){ this.translate.addLangs(['pl', 'en']); this.translate.setDefaultLang('pl'); - this.translate.use('en'); - } + this.translate.use('pl'); + } // app.component.ts switchLanguage(language: string) {