Custom Menu in panel using language

Hey there

 'menu' => [
            'goTo' => [
                'icon'  => 'play',
                'label' => 'Go to Site',
                'link'  => '../',
            ],
            '-',

            'site' => [
                'label' => 'Overview'
            ],


            '-',
            'users',
            'system',
            'git-content',
            'languages',
        ]

I have this custom panel menu on my website. I’d like the labels to be langage relative (as users, system…) How is that possible ?

You can pass an array

			    'label' => ['en' => 'Overview', 'de' => 'Überblick'],

Or use a key site.label.overview and create translations in your language files or in a plugin using the translations extension.