blob: 00bf52bd56e2e940557803cbefae06975833c311 [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 * - Alastair McKinstry bug-glibc-locales@gnu.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['mis Genver', 'mis Hwevrer', 'mis Meurth', 'mis Ebrel', 'mis Me', 'mis Metheven', 'mis Gortheren', 'mis Est', 'mis Gwynngala', 'mis Hedra', 'mis Du', 'mis Kevardhu'],
21 'months_short' => ['Gen', 'Hwe', 'Meu', 'Ebr', 'Me', 'Met', 'Gor', 'Est', 'Gwn', 'Hed', 'Du', 'Kev'],
22 'weekdays' => ['De Sul', 'De Lun', 'De Merth', 'De Merher', 'De Yow', 'De Gwener', 'De Sadorn'],
23 'weekdays_short' => ['Sul', 'Lun', 'Mth', 'Mhr', 'Yow', 'Gwe', 'Sad'],
24 'weekdays_min' => ['Sul', 'Lun', 'Mth', 'Mhr', 'Yow', 'Gwe', 'Sad'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'year' => ':count bledhen',
29 'y' => ':count bledhen',
30 'a_year' => ':count bledhen',
31
32 'month' => ':count mis',
33 'm' => ':count mis',
34 'a_month' => ':count mis',
35
36 'week' => ':count seythen',
37 'w' => ':count seythen',
38 'a_week' => ':count seythen',
39
40 'day' => ':count dydh',
41 'd' => ':count dydh',
42 'a_day' => ':count dydh',
43
44 'hour' => ':count eur',
45 'h' => ':count eur',
46 'a_hour' => ':count eur',
47
48 'minute' => ':count mynysen',
49 'min' => ':count mynysen',
50 'a_minute' => ':count mynysen',
51
52 'second' => ':count pryjwyth',
53 's' => ':count pryjwyth',
54 'a_second' => ':count pryjwyth',
55]);