Files
authsec_angularClarity_modern/frontend/angular-clarity-master/src/app/app.component.ts
Gaurav Kumar 6d2a59da38 ui
2025-09-26 08:49:03 +05:30

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);
}
}