22 lines
718 B
PHP
22 lines
718 B
PHP
<?php
|
|
/**
|
|
* header.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 19:03:19
|
|
* @modified 2022-08-02 19:03:19
|
|
*/
|
|
|
|
return [
|
|
'admin_users_index' => 'lista utenti',
|
|
'admin_users_create' => 'Crea utente',
|
|
'admin_users_show' => 'Dettagli utente',
|
|
'admin_users_update' => 'aggiorna utenti',
|
|
'admin_users_delete' => 'elimina utente',
|
|
'verify_code_expired' => 'Il tuo codice di verifica è scaduto (10 minuti), per favore recuperalo',
|
|
'verify_code_error' => 'Il tuo codice di verifica è sbagliato',
|
|
'account_not_exist' => 'l\'account non esiste',
|
|
];
|