-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathIt.php
More file actions
18 lines (14 loc) · 728 Bytes
/
Copy pathIt.php
File metadata and controls
18 lines (14 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
namespace Dater\Locale;
use Dater\Dater;
class It extends \Dater\Locale {
protected static $months = array('Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre');
protected static $weekDays = array('Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato', 'Domenica');
protected static $weekDaysShort = array('Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab', 'Dom');
// Referring to https://en.wikipedia.org/wiki/Date_format_by_country
protected static $formats = array(
Dater::USER_DATE_FORMAT => 'd-m-Y',
Dater::USER_TIME_FORMAT => 'H:i',
Dater::USER_DATETIME_FORMAT => 'd-m-Y H:i',
);
}