i18N in SecurityAdmin after upgrade to v5 not working

Silverstripe Version: Silverstripe 5.3

Question:

After upgrade to v5, the titles of the managed-Models in SecurityAdmin remains in language en. Most of other labels are translated. Do I miss a significant change in v5?

/**
 * Security section of the CMS
 */
class SecurityAdmin extends ModelAdmin implements PermissionProvider
{
    private static $managed_models = [
        'users' => [
            'title' => 'Users',
            'dataClass' => Member::class
        ],
        'groups' => [
            'title' => 'Groups',
            'dataClass' => Group::class
        ],
        'roles' => [
            'title' => 'Roles',
            'dataClass' => PermissionRole::class
        ],
    ];

Best regards,
chrclaus

Hi there,

This looks like an oversight when that class was refactored. Please feel free to raise an issue in GitHub about it.