translated lega
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
||||
import { environment } from '../../../../environments/environment';
|
||||
import { Component, ChangeDetectionStrategy, inject } from '@angular/core';
|
||||
import { LanguageService } from '../../../services/language.service';
|
||||
import { PrivacyPolicyRuComponent } from './ru/privacy-policy-ru.component';
|
||||
import { PrivacyPolicyEnComponent } from './en/privacy-policy-en.component';
|
||||
import { PrivacyPolicyHyComponent } from './hy/privacy-policy-hy.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-privacy-policy',
|
||||
imports: [],
|
||||
imports: [PrivacyPolicyRuComponent, PrivacyPolicyEnComponent, PrivacyPolicyHyComponent],
|
||||
templateUrl: './privacy-policy.component.html',
|
||||
styleUrls: ['./privacy-policy.component.scss'],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
})
|
||||
export class PrivacyPolicyComponent {
|
||||
brandName = environment.brandName;
|
||||
domain = environment.domain;
|
||||
contactEmail = environment.contactEmail;
|
||||
isnovo = environment.theme === 'novo';
|
||||
lang = inject(LanguageService).currentLanguage;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user