A partner would like to provide an own alarm component in Cumulocity with custom provided msg strings.
These alarm texts should be translated and displayed in the user defined language.
The provided messages in the *.po file should not be available outside of a specific module.
One approach was to use the configuration properties: isolate and extend that are documented in ngx-translate project
TranslateModule.forChild({
isolate: true,
extend: false
})
But this had no effect.
How can this be achieved?