Files
test29jan26/test29jan26-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/app.component.ts
2026-01-29 03:27:40 +00:00

19 lines
474 B
TypeScript

import { Component } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'angularclarity';
constructor(private translate: TranslateService) {
// Set the default language
this.translate.setDefaultLang('en');
}
switchLanguage(language: string) {
this.translate.use(language);
}
}