blob: f333136f4ec4c47214d01d58297a9075aa434bde [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 * - Kunal Marwaha
15 * - Josh Soref
16 * - Jørn Ølmheim
17 * - Craig Patik
18 * - bustta
19 * - François B
20 * - Tim Fish
21 * - Claire Coloma
22 * - Steven Heinrich
23 * - JD Isaacks
24 * - Raphael Amorim
25 */
26return array_replace_recursive(require __DIR__.'/es.php', [
27 'diff_before_yesterday' => 'anteayer',
28 'formats' => [
29 'LT' => 'h:mm A',
30 'LTS' => 'h:mm:ss A',
31 'L' => 'MM/DD/YYYY',
32 'LL' => 'MMMM [de] D [de] YYYY',
33 'LLL' => 'MMMM [de] D [de] YYYY h:mm A',
34 'LLLL' => 'dddd, MMMM [de] D [de] YYYY h:mm A',
35 ],
36 'first_day_of_week' => 0,
37 'day_of_first_week_of_year' => 1,
38]);