| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | <?php
return [
    'label' => 'Profil',
    'form' => [
        'email' => [
            'label' => 'E-postadresse',
        ],
        'name' => [
            'label' => 'Navn',
        ],
        'password' => [
            'label' => 'Nytt passord',
        ],
        'password_confirmation' => [
            'label' => 'Bekreft nytt passord',
        ],
        'actions' => [
            'save' => [
                'label' => 'Lagre endringer',
            ],
        ],
    ],
    'notifications' => [
        'saved' => [
            'title' => 'Lagret',
        ],
    ],
    'actions' => [
        'cancel' => [
            'label' => 'tilbake',
        ],
    ],
];
 |