blob: bcf158078221e86c9d48866100d5a217cbce7cb4 [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 * - Rene Torres Rene Torres, Pablo Saratxaga rgtorre@rocketmail.com, pablo@mandrakesoft.com
15 * - Jaycee Mariano (alohajaycee)
16 */
17return array_replace_recursive(require __DIR__.'/en.php', [
18 'formats' => [
19 'L' => 'MM/DD/YY',
20 ],
21 'months' => ['Enero', 'Pebrero', 'Marso', 'Abril', 'Mayo', 'Hunyo', 'Hulyo', 'Agosto', 'Setyembre', 'Oktubre', 'Nobyembre', 'Disyembre'],
22 'months_short' => ['Ene', 'Peb', 'Mar', 'Abr', 'May', 'Hun', 'Hul', 'Ago', 'Set', 'Okt', 'Nob', 'Dis'],
23 'weekdays' => ['Linggo', 'Lunes', 'Martes', 'Miyerkoles', 'Huwebes', 'Biyernes', 'Sabado'],
24 'weekdays_short' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],
25 'weekdays_min' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],
26 'day_of_first_week_of_year' => 1,
27 'meridiem' => ['N.U.', 'N.H.'],
28
29 'before' => ':time bago',
30 'after' => ':time pagkatapos',
31
32 'year' => ':count taon',
33 'y' => ':count taon',
34 'a_year' => ':count taon',
35
36 'month' => ':count buwan',
37 'm' => ':count buwan',
38 'a_month' => ':count buwan',
39
40 'week' => ':count linggo',
41 'w' => ':count linggo',
42 'a_week' => ':count linggo',
43
44 'day' => ':count araw',
45 'd' => ':count araw',
46 'a_day' => ':count araw',
47
48 'hour' => ':count oras',
49 'h' => ':count oras',
50 'a_hour' => ':count oras',
51
52 'minute' => ':count minuto',
53 'min' => ':count minuto',
54 'a_minute' => ':count minuto',
55
56 'second' => ':count segundo',
57 's' => ':count segundo',
58 'a_second' => ':count segundo',
59
60 'ago' => ':time ang nakalipas',
61 'from_now' => 'sa :time',
62]);