how to add translation for createSimplifiedModule tiltle?

Hi

I am developing a plugin. and I have a backend listing. I have done this listing using “Lightweight backend modules”.

I want to show the window title in both English and German.

Shopware.ModuleManager.createSimplifiedModule(“AbandonedCartUsers”, { “title”: ‘Abandoned Cart Users’ })

This is the code in menu.xml file. How we can add the translation here?

I have changed the title by adding the following code in postmessage.js (inside $(document).ready(function () {}):wink:

    //Change title
    setTimeout(function(){
        postMessageApi.window.setTitle(storeSurvey.strings.windowTitle);
    }, 100);