blob: 9db88a1281532d03957ec7be8c80ee84dc941d3a [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 * - RAP libc-alpha@sourceware.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'],
21 'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'],
22 'weekdays' => ['teoilhuitl', 'ceilhuitl', 'omeilhuitl', 'yeilhuitl', 'nahuilhuitl', 'macuililhuitl', 'chicuaceilhuitl'],
23 'weekdays_short' => ['teo', 'cei', 'ome', 'yei', 'nau', 'mac', 'chi'],
24 'weekdays_min' => ['teo', 'cei', 'ome', 'yei', 'nau', 'mac', 'chi'],
25 'day_of_first_week_of_year' => 1,
26
27 'month' => ':count metztli', // less reliable
28 'm' => ':count metztli', // less reliable
29 'a_month' => ':count metztli', // less reliable
30
31 'week' => ':count tonalli', // less reliable
32 'w' => ':count tonalli', // less reliable
33 'a_week' => ':count tonalli', // less reliable
34
35 'day' => ':count tonatih', // less reliable
36 'd' => ':count tonatih', // less reliable
37 'a_day' => ':count tonatih', // less reliable
38
39 'minute' => ':count toltecayotl', // less reliable
40 'min' => ':count toltecayotl', // less reliable
41 'a_minute' => ':count toltecayotl', // less reliable
42
43 'second' => ':count ome', // less reliable
44 's' => ':count ome', // less reliable
45 'a_second' => ':count ome', // less reliable
46
47 'year' => ':count xihuitl',
48 'y' => ':count xihuitl',
49 'a_year' => ':count xihuitl',
50]);