blob: 6a14535a5b19810256f80456e3f709b0c5c3a8f6 [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 * - The Debian Project modified by GNU//Linux Malagasy Rado Ramarotafika,Do-Risika RAFIEFERANTSIARONJY rado@linuxmg.org,dourix@free.fr
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['Janoary', 'Febroary', 'Martsa', 'Aprily', 'Mey', 'Jona', 'Jolay', 'Aogositra', 'Septambra', 'Oktobra', 'Novambra', 'Desambra'],
21 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mey', 'Jon', 'Jol', 'Aog', 'Sep', 'Okt', 'Nov', 'Des'],
22 'weekdays' => ['alahady', 'alatsinainy', 'talata', 'alarobia', 'alakamisy', 'zoma', 'sabotsy'],
23 'weekdays_short' => ['lhd', 'lts', 'tlt', 'lrb', 'lkm', 'zom', 'sab'],
24 'weekdays_min' => ['lhd', 'lts', 'tlt', 'lrb', 'lkm', 'zom', 'sab'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'minute' => ':count minitra', // less reliable
29 'min' => ':count minitra', // less reliable
30 'a_minute' => ':count minitra', // less reliable
31
32 'year' => ':count taona',
33 'y' => ':count taona',
34 'a_year' => ':count taona',
35
36 'month' => ':count volana',
37 'm' => ':count volana',
38 'a_month' => ':count volana',
39
40 'week' => ':count herinandro',
41 'w' => ':count herinandro',
42 'a_week' => ':count herinandro',
43
44 'day' => ':count andro',
45 'd' => ':count andro',
46 'a_day' => ':count andro',
47
48 'hour' => ':count ora',
49 'h' => ':count ora',
50 'a_hour' => ':count ora',
51
52 'second' => ':count segondra',
53 's' => ':count segondra',
54 'a_second' => ':count segondra',
55]);