import { Component } from '@angular/core'; import {TranslateService} from '@ngx-translate/core'; @Component({ selector: 'cc-decorations-root', templateUrl: './decorations.component.html', styleUrls: ['./decorations.component.scss'] }) export class DecorationsComponent { constructor(private translate: TranslateService) { translate.setDefaultLang('de'); } }