Files
forgotten-friends/src/app/components/translateable.component.ts
2026-02-26 15:33:24 +01:00

12 lines
437 B
TypeScript

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