import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class TranslationService { [key: string]: string; constructor() { Object.keys(window.mkVars || {}).forEach(propertyName => this[propertyName] = window.mkVars[propertyName]); } }