Radu

Results 2 comments of Radu

Thank you. I have a possible implementation for the problem, but it's in my own service that is a wrapper for the TranslationService. If you want, I can put here...

Ok. So here it is: ``` javascript private set(key: string, value: string): void { let translations: any = (this._translationService).translations[this._translationService.currentLang]; let path: string[] = key.split('.'); this.setDeepValue(translations, value, path); this._translationService.onTranslationChange.emit({ translations: translations,...