blob: f8726fd2ca78e476169180af85efe844dcd0873c [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 * - Gastaldi alessio.gastaldi@libero.it
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YYYY',
19 ],
20 'months' => ['zenâ', 'fevrâ', 'marzo', 'avrî', 'mazzo', 'zûgno', 'lûggio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dixembre'],
21 'months_short' => ['zen', 'fev', 'mar', 'arv', 'maz', 'zûg', 'lûg', 'ago', 'set', 'ött', 'nov', 'dix'],
22 'weekdays' => ['domenega', 'lûnedì', 'martedì', 'mercUrdì', 'zêggia', 'venardì', 'sabbo'],
23 'weekdays_short' => ['dom', 'lûn', 'mar', 'mer', 'zêu', 'ven', 'sab'],
24 'weekdays_min' => ['dom', 'lûn', 'mar', 'mer', 'zêu', 'ven', 'sab'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'year' => ':count etæ', // less reliable
29 'y' => ':count etæ', // less reliable
30 'a_year' => ':count etæ', // less reliable
31
32 'month' => ':count meize',
33 'm' => ':count meize',
34 'a_month' => ':count meize',
35
36 'week' => ':count settemannha',
37 'w' => ':count settemannha',
38 'a_week' => ':count settemannha',
39
40 'day' => ':count giorno',
41 'd' => ':count giorno',
42 'a_day' => ':count giorno',
43
44 'hour' => ':count reléuio', // less reliable
45 'h' => ':count reléuio', // less reliable
46 'a_hour' => ':count reléuio', // less reliable
47
48 'minute' => ':count menûo',
49 'min' => ':count menûo',
50 'a_minute' => ':count menûo',
51
52 'second' => ':count segondo',
53 's' => ':count segondo',
54 'a_second' => ':count segondo',
55]);