blob: 1843f456309bbacf34cd510de60afeca53002c99 [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 * - Philippe Vaucher
15 * - tjku
16 * - Max Melentiev
17 * - Juanito Fatas
18 * - Tsutomu Kuroda
19 * - Akira Matsuda
20 * - Christopher Dell
21 * - Enrique Vidal
22 * - Simone Carletti
23 * - Aaron Patterson
24 * - Nicolás Hock Isaza
25 * - sebastian de castelberg
26 */
27return array_replace_recursive(require __DIR__.'/en.php', [
28 'formats' => [
29 'LT' => 'HH:mm',
30 'LTS' => 'HH:mm:ss',
31 'L' => 'DD.MM.YYYY',
32 'LL' => 'Do MMMM YYYY',
33 'LLL' => 'Do MMMM, HH:mm [Uhr]',
34 'LLLL' => 'dddd, Do MMMM YYYY, HH:mm [Uhr]',
35 ],
36 'year' => ':count onn|:count onns',
37 'month' => ':count mais',
38 'week' => ':count emna|:count emnas',
39 'day' => ':count di|:count dis',
40 'hour' => ':count oura|:count ouras',
41 'minute' => ':count minuta|:count minutas',
42 'second' => ':count secunda|:count secundas',
43 'weekdays' => ['dumengia', 'glindesdi', 'mardi', 'mesemna', 'gievgia', 'venderdi', 'sonda'],
44 'weekdays_short' => ['du', 'gli', 'ma', 'me', 'gie', 've', 'so'],
45 'weekdays_min' => ['du', 'gli', 'ma', 'me', 'gie', 've', 'so'],
46 'months' => ['schaner', 'favrer', 'mars', 'avrigl', 'matg', 'zercladur', 'fanadur', 'avust', 'settember', 'october', 'november', 'december'],
47 'months_short' => ['schan', 'favr', 'mars', 'avr', 'matg', 'zercl', 'fan', 'avust', 'sett', 'oct', 'nov', 'dec'],
48 'meridiem' => ['avantmezdi', 'suentermezdi'],
49 'list' => [', ', ' e '],
50 'first_day_of_week' => 1,
51]);