blob: 410a2660f127ee1e77185d78d40c92f8f542d70d [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
12return [
13 'year' => ':count taon',
14 'a_year' => '{1}isang taon|:count taon',
15 'month' => ':count buwan',
16 'a_month' => '{1}isang buwan|:count buwan',
17 'week' => ':count linggo',
18 'a_week' => '{1}isang linggo|:count linggo',
19 'day' => ':count araw',
20 'a_day' => '{1}isang araw|:count araw',
21 'hour' => ':count oras',
22 'a_hour' => '{1}isang oras|:count oras',
23 'minute' => ':count minuto',
24 'a_minute' => '{1}isang minuto|:count minuto',
25 'min' => ':count min.',
26 'second' => ':count segundo',
27 'a_second' => '{1}ilang segundo|:count segundo',
28 's' => ':count seg.',
29 'ago' => ':time ang nakalipas',
30 'from_now' => 'sa loob ng :time',
31 'diff_now' => 'ngayon',
32 'diff_today' => 'ngayong',
33 'diff_today_regexp' => 'ngayong(?:\\s+araw)?',
34 'diff_yesterday' => 'kahapon',
35 'diff_tomorrow' => 'bukas',
36 'diff_tomorrow_regexp' => 'Bukas(?:\\s+ng)?',
37 'formats' => [
38 'LT' => 'HH:mm',
39 'LTS' => 'HH:mm:ss',
40 'L' => 'MM/D/YYYY',
41 'LL' => 'MMMM D, YYYY',
42 'LLL' => 'MMMM D, YYYY HH:mm',
43 'LLLL' => 'dddd, MMMM DD, YYYY HH:mm',
44 ],
45 'calendar' => [
46 'sameDay' => 'LT [ngayong araw]',
47 'nextDay' => '[Bukas ng] LT',
48 'nextWeek' => 'LT [sa susunod na] dddd',
49 'lastDay' => 'LT [kahapon]',
50 'lastWeek' => 'LT [noong nakaraang] dddd',
51 'sameElse' => 'L',
52 ],
53 'months' => ['Enero', 'Pebrero', 'Marso', 'Abril', 'Mayo', 'Hunyo', 'Hulyo', 'Agosto', 'Setyembre', 'Oktubre', 'Nobyembre', 'Disyembre'],
54 'months_short' => ['Ene', 'Peb', 'Mar', 'Abr', 'May', 'Hun', 'Hul', 'Ago', 'Set', 'Okt', 'Nob', 'Dis'],
55 'weekdays' => ['Linggo', 'Lunes', 'Martes', 'Miyerkules', 'Huwebes', 'Biyernes', 'Sabado'],
56 'weekdays_short' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'],
57 'weekdays_min' => ['Li', 'Lu', 'Ma', 'Mi', 'Hu', 'Bi', 'Sab'],
58 'first_day_of_week' => 1,
59 'day_of_first_week_of_year' => 4,
60 'list' => [', ', ' at '],
61];