Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 91x 91x 91x 91x 91x 3x 91x 3x 91x 1x 1x 91x | import { Component, Input, OnInit } from '@angular/core';
import { LocaleHelper } from '../../../locale.helper';
import { SupportedLanguages } from './supported-languages.enum';
@Component({
selector: 'cd-language-selector',
template: require('./language-selector.component.html'),
styles: []
})
export class LanguageSelectorComponent implements OnInit {
@Input()
isDropdown = true;
supportedLanguages = SupportedLanguages;
selectedLanguage: string;
ngOnInit() {
this.selectedLanguage = LocaleHelper.getLocale();
}
changeLanguage(lang: string) {
LocaleHelper.setLocale(lang);
// Reload frontend
window.location.reload();
}
}
|