I've added the @ngx-translate/core, inside a http-request I get dropdown values. Those values are then added to a translation language object using the method:
translate.setTranslation('en', {
HELLO: 'hello {{value}}'
});
Is there any way to merge this newly created object with the originally loaded translations. I'm using the provided custom loader, is there a way to reuse it to load new translations.
export function createTranslateLoader(http: HttpClient) {
return new TranslateHttpLoader(http, './assets/i18n/', '.json');
}