Provide isolated bundle for ui strings for own c8y angular component

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?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.