e8aad989ec
Signed-off-by: snipe <snipe@snipe.net>
79 lines
1.9 KiB
PHP
79 lines
1.9 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'today' => 'Oggi',
|
|
'clear' => 'Svuota',
|
|
'days' => [
|
|
'sunday' => 'Domenica',
|
|
'monday' => 'Lunedì',
|
|
'tuesday' => 'Martedì',
|
|
'wednesday' => 'Mercoledì',
|
|
'thursday' => 'Giovedì',
|
|
'friday' => 'Venerdì',
|
|
'saturday' => 'Sabato',
|
|
],
|
|
|
|
'short_days' => [
|
|
'sunday' => 'Dom',
|
|
'monday' => 'Lun',
|
|
'tuesday' => 'Mar',
|
|
'wednesday' => 'Mer',
|
|
'thursday' => 'Gio',
|
|
'friday' => 'Ven',
|
|
'saturday' => 'Sab',
|
|
],
|
|
|
|
'min_days' => [
|
|
'sunday' => 'Do',
|
|
'monday' => 'Lu',
|
|
'tuesday' => 'Ma',
|
|
'wednesday' => 'Me',
|
|
'thursday' => 'Gi',
|
|
'friday' => 'Ve',
|
|
'saturday' => 'Sa',
|
|
],
|
|
|
|
'months' => [
|
|
'january' => 'Gennaio',
|
|
'february' => 'Febbraio',
|
|
'march' => 'Marzo',
|
|
'april' => 'Aprile',
|
|
'may' => 'Maggio',
|
|
'june' => 'Giugno',
|
|
'july' => 'Luglio',
|
|
'august' => 'Agosto',
|
|
'september' => 'Settembre',
|
|
'october' => 'Ottobre',
|
|
'november' => 'Novembre',
|
|
'december' => 'Dicembre',
|
|
],
|
|
|
|
'months_short' => [
|
|
'january' => 'Gen',
|
|
'february' => 'Feb',
|
|
'march' => 'Mar',
|
|
'april' => 'Apr',
|
|
'may' => 'Mag',
|
|
'june' => 'Giu',
|
|
'july' => 'Lug',
|
|
'august' => 'Ago',
|
|
'september' => 'Set',
|
|
'october' => 'Ott',
|
|
'november' => 'Nov',
|
|
'december' => 'Dic',
|
|
],
|
|
|
|
);
|