blob: 5f58c44c0be211f77cc566810581c6dec9870f8b [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 * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YYYY',
19 ],
20 'months' => ['Janueri', 'Februeri', 'Mas', 'Epril', 'Me', 'Jun', 'Julai', 'Ogas', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
21 'months_short' => ['Jan', 'Feb', 'Mas', 'Epr', 'Me', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Des'],
22 'weekdays' => ['Sande', 'Mande', 'Tunde', 'Trinde', 'Fonde', 'Fraide', 'Sarere'],
23 'weekdays_short' => ['San', 'Man', 'Tun', 'Tri', 'Fon', 'Fra', 'Sar'],
24 'weekdays_min' => ['San', 'Man', 'Tun', 'Tri', 'Fon', 'Fra', 'Sar'],
25 'day_of_first_week_of_year' => 1,
26 'meridiem' => ['biknait', 'apinun'],
27
28 'year' => 'yia :count',
29 'y' => 'yia :count',
30 'a_year' => 'yia :count',
31
32 'month' => ':count mun',
33 'm' => ':count mun',
34 'a_month' => ':count mun',
35
36 'week' => ':count wik',
37 'w' => ':count wik',
38 'a_week' => ':count wik',
39
40 'day' => ':count de',
41 'd' => ':count de',
42 'a_day' => ':count de',
43
44 'hour' => ':count aua',
45 'h' => ':count aua',
46 'a_hour' => ':count aua',
47
48 'minute' => ':count minit',
49 'min' => ':count minit',
50 'a_minute' => ':count minit',
51
52 'second' => ':count namba tu',
53 's' => ':count namba tu',
54 'a_second' => ':count namba tu',
55]);