blob: 7f8e9daf675abf3bf78e479fbb0488d0eab9c03d [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 */
11return array_replace_recursive(require __DIR__.'/en.php', [
12 'meridiem' => ['ND', 'LK'],
13 'weekdays' => ['Bikua-ôko', 'Bïkua-ûse', 'Bïkua-ptâ', 'Bïkua-usïö', 'Bïkua-okü', 'Lâpôsö', 'Lâyenga'],
14 'weekdays_short' => ['Bk1', 'Bk2', 'Bk3', 'Bk4', 'Bk5', 'Lâp', 'Lây'],
15 'weekdays_min' => ['Bk1', 'Bk2', 'Bk3', 'Bk4', 'Bk5', 'Lâp', 'Lây'],
16 'months' => ['Nyenye', 'Fulundïgi', 'Mbängü', 'Ngubùe', 'Bêläwü', 'Föndo', 'Lengua', 'Kükürü', 'Mvuka', 'Ngberere', 'Nabändüru', 'Kakauka'],
17 'months_short' => ['Nye', 'Ful', 'Mbä', 'Ngu', 'Bêl', 'Fön', 'Len', 'Kük', 'Mvu', 'Ngb', 'Nab', 'Kak'],
18 'first_day_of_week' => 1,
19 'formats' => [
20 'LT' => 'HH:mm',
21 'LTS' => 'HH:mm:ss',
22 'L' => 'D/M/YYYY',
23 'LL' => 'D MMM, YYYY',
24 'LLL' => 'D MMMM YYYY HH:mm',
25 'LLLL' => 'dddd D MMMM YYYY HH:mm',
26 ],
27
28 'year' => ':count dā', // less reliable
29 'y' => ':count dā', // less reliable
30 'a_year' => ':count dā', // less reliable
31
32 'week' => ':count bïkua-okü', // less reliable
33 'w' => ':count bïkua-okü', // less reliable
34 'a_week' => ':count bïkua-okü', // less reliable
35
36 'day' => ':count ziggawâ', // less reliable
37 'd' => ':count ziggawâ', // less reliable
38 'a_day' => ':count ziggawâ', // less reliable
39
40 'hour' => ':count yângâködörö', // less reliable
41 'h' => ':count yângâködörö', // less reliable
42 'a_hour' => ':count yângâködörö', // less reliable
43
44 'second' => ':count bïkua-ôko', // less reliable
45 's' => ':count bïkua-ôko', // less reliable
46 'a_second' => ':count bïkua-ôko', // less reliable
47
48 'month' => ':count Nze tî ngu',
49 'm' => ':count Nze tî ngu',
50 'a_month' => ':count Nze tî ngu',
51]);