mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-18 13:03:29 -05:00
86 lines
2.4 KiB
PHP
86 lines
2.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
'name' => [
|
|
'name' => 'Nome',
|
|
'instructions' => [
|
|
'roles' => 'Indica un breve ma descrittivo nome per questo ruolo.',
|
|
],
|
|
],
|
|
'description' => [
|
|
'name' => 'Descrizione',
|
|
'instructions' => [
|
|
'roles' => 'Descrivi brevemente questo ruolo.',
|
|
],
|
|
],
|
|
'first_name' => [
|
|
'name' => 'Nome',
|
|
'instructions' => 'Indica il nome dell'utente.',
|
|
],
|
|
'last_name' => [
|
|
'name' => 'Cognome',
|
|
'instructions' => 'Indica il cognome dell'utente',
|
|
],
|
|
'display_name' => [
|
|
'name' => 'Nome da msotrare',
|
|
'instructions' => 'Indica il nome da mostrare per l'utente.',
|
|
],
|
|
'username' => [
|
|
'name' => 'Username',
|
|
'instructions' => 'L'username è utilizzato per identificare e mostrare in modo univoco l'utente.',
|
|
],
|
|
'email' => [
|
|
'name' => 'Email',
|
|
'instructions' => 'L'indirizzo email è utilizzato per effettuare il login.',
|
|
],
|
|
'password' => [
|
|
'name' => 'Password',
|
|
'instructions' => 'Indica la password dell'utente.',
|
|
],
|
|
'confirm_password' => [
|
|
'name' => 'Conferma password',
|
|
],
|
|
'slug' => [
|
|
'name' => 'Slug',
|
|
'instructions' => [
|
|
'roles' => 'Lo slug è utilizzato per identificare in modo univoco questo ruolo.',
|
|
],
|
|
],
|
|
'roles' => [
|
|
'name' => 'Ruoli',
|
|
'instructions' => 'Specifica a quali ruoli appartiene l'utente.',
|
|
],
|
|
'permissions' => [
|
|
'name' => 'Permessi',
|
|
],
|
|
'last_activity_at' => [
|
|
'name' => 'Ultima attività',
|
|
],
|
|
'activated' => [
|
|
'name' => 'Attivato',
|
|
'label' => 'Questo utente è attivo?',
|
|
'instructions' => 'L'utente non potrà effettuare il login finché non verrà attivato.',
|
|
],
|
|
'enabled' => [
|
|
'name' => 'Abilita',
|
|
'label' => 'Questo utente è abilitato?',
|
|
'instructions' => 'L'utente non sarà in grado di fare il login o riattivare il suo account se è stato disabilitato.',
|
|
],
|
|
'activation_code' => [
|
|
'name' => 'Codice di attivazione',
|
|
],
|
|
'reset_code' => [
|
|
'name' => 'Codice di reset',
|
|
],
|
|
'remember_me' => [
|
|
'name' => 'Ricordami',
|
|
],
|
|
'status' => [
|
|
'name' => 'Stato',
|
|
'option' => [
|
|
'active' => 'Attivo',
|
|
'inactive' => 'Disattivo',
|
|
'disabled' => 'Disabilitato',
|
|
],
|
|
],
|
|
]; |