plesk / plesk-ext-sdk

Toolkit for development extensions for Plesk
Apache License 2.0
11 stars 7 forks source link

Localization for route title? #15

Closed mdsina closed 5 years ago

mdsina commented 5 years ago

In extension.config.js you can describe the route title. But can it be localizable?

{
            path: '/access',
            component: 'domain/RemoteAccess',
            title: 'Remote Access', // <-- this one
        }
ekaragodin commented 5 years ago

For localizing the page title you should set a special key in locales:

<?php
$messages = [
    'app' => [
        'domain' => [
            'RemoteAccess' => [
                'title' => 'Remote Access Title',
            ],
        ],
    ],
];