blob: 0147a596aca835fb30e4d361939f260828d84bfe [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 * - Pablo Saratxaga pablo@mandrakesoft.com
15 */
16return [
17 'formats' => [
18 'LT' => 'HH:mm',
19 'LTS' => 'HH:mm:ss',
20 'L' => 'DD. MM. YY',
21 'LL' => 'DD di MMMM dal YYYY',
22 'LLL' => 'DD di MMM HH:mm',
23 'LLLL' => 'DD di MMMM dal YYYY HH:mm',
24 ],
25 'months' => ['zenâr', 'fevrâr', 'març', 'avrîl', 'mai', 'jugn', 'lui', 'avost', 'setembar', 'otubar', 'novembar', 'dicembar'],
26 'months_short' => ['zen', 'fev', 'mar', 'avr', 'mai', 'jug', 'lui', 'avo', 'set', 'otu', 'nov', 'dic'],
27 'weekdays' => ['domenie', 'lunis', 'martars', 'miercus', 'joibe', 'vinars', 'sabide'],
28 'weekdays_short' => ['dom', 'lun', 'mar', 'mie', 'joi', 'vin', 'sab'],
29 'weekdays_min' => ['dom', 'lun', 'mar', 'mie', 'joi', 'vin', 'sab'],
30 'first_day_of_week' => 1,
31 'day_of_first_week_of_year' => 4,
32 'year' => ':count an',
33 'month' => ':count mês',
34 'week' => ':count setemane',
35 'day' => ':count zornade',
36 'hour' => ':count ore',
37 'minute' => ':count minût',
38 'second' => ':count secont',
39];