An error occurred while loading the file. Please try again.
-
Olivier Kaufmann authored973e2ff6
import { Component } from '@angular/core';
import { InternationalisationService } from '../../services/internationalisation/internationalisation.service';
@Component({
selector: 'section-param',
templateUrl: "./section-param.component.html"
})
export class SectionParametreeComponent {
private get uitextTitre() {
return this.intlService.localizeText("INFO_SECTPARAM_TITRE")
}
constructor(private intlService: InternationalisationService) {
}
}