translated lega
This commit is contained in:
@@ -1,15 +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 { DeliveryRuComponent } from './ru/delivery-ru.component';
|
||||
import { DeliveryEnComponent } from './en/delivery-en.component';
|
||||
import { DeliveryHyComponent } from './hy/delivery-hy.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-delivery',
|
||||
imports: [],
|
||||
imports: [DeliveryRuComponent, DeliveryEnComponent, DeliveryHyComponent],
|
||||
templateUrl: './delivery.component.html',
|
||||
styleUrls: ['./delivery.component.scss'],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
})
|
||||
export class DeliveryComponent {
|
||||
brandName = environment.brandName;
|
||||
contactEmail = environment.contactEmail;
|
||||
isnovo = environment.theme === 'novo';
|
||||
lang = inject(LanguageService).currentLanguage;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user