blob: a44c3508e048873708def0d40aad4d76bc4e5711 [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 * - NehaGautam
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'from_now' => 'in :time',
18 'formats' => [
19 'LT' => 'HH:mm',
20 'LTS' => 'HH:mm:ss',
21 'L' => 'DD-MM-YYYY',
22 'LL' => 'D MMMM YYYY',
23 'LLL' => 'D MMMM YYYY HH:mm',
24 'LLLL' => 'dddd, D MMMM YYYY HH:mm',
25 ],
26 'first_day_of_week' => 1,
27 'day_of_first_week_of_year' => 4,
28]);