the great renaming
This commit is contained in:
12
src/app/components/translateable.component.ts
Normal file
12
src/app/components/translateable.component.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Component, inject } from "@angular/core";
|
||||
import { LanguageSupportService } from "../logic/language-support/language-support.service";
|
||||
|
||||
@Component({
|
||||
selector: 'ff-translateable',
|
||||
imports: [],
|
||||
template: '',
|
||||
})
|
||||
export class TranslateableComponent {
|
||||
private readonly langSupportService: LanguageSupportService = inject(LanguageSupportService);
|
||||
protected readonly lang = this.langSupportService.acticeLanguage;
|
||||
}
|
||||
Reference in New Issue
Block a user