blob: de4b2fa09e03d2b18631fc68a4babb4ab9d27c5b [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - Fedora Project Nik Kalach nikka@fedoraproject.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['januario', 'februario', 'martio', 'april', 'maio', 'junio', 'julio', 'augusto', 'septembre', 'octobre', 'novembre', 'decembre'],
21 'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'],
22 'weekdays' => ['dominica', 'lunedi', 'martedi', 'mercuridi', 'jovedi', 'venerdi', 'sabbato'],
23 'weekdays_short' => ['dom', 'lun', 'mar', 'mer', 'jov', 'ven', 'sab'],
24 'weekdays_min' => ['dom', 'lun', 'mar', 'mer', 'jov', 'ven', 'sab'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'year' => 'anno :count',
29 'y' => 'anno :count',
30 'a_year' => 'anno :count',
31
32 'month' => ':count mense',
33 'm' => ':count mense',
34 'a_month' => ':count mense',
35
36 'week' => ':count septimana',
37 'w' => ':count septimana',
38 'a_week' => ':count septimana',
39
40 'day' => ':count die',
41 'd' => ':count die',
42 'a_day' => ':count die',
43
44 'hour' => ':count hora',
45 'h' => ':count hora',
46 'a_hour' => ':count hora',
47
48 'minute' => ':count minuscule',
49 'min' => ':count minuscule',
50 'a_minute' => ':count minuscule',
51
52 'second' => ':count secunda',
53 's' => ':count secunda',
54 'a_second' => ':count secunda',
55]);