blob: d0544d4e41f9c46661aa695c244bf80d682714ae [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 * - Joshua Brooks
15 * - François B
16 */
17return [
18 'year' => 'tinan :count',
19 'a_year' => '{1}tinan ida|tinan :count',
20 'month' => 'fulan :count',
21 'a_month' => '{1}fulan ida|fulan :count',
22 'week' => 'semana :count',
23 'a_week' => '{1}semana ida|semana :count',
24 'day' => 'loron :count',
25 'a_day' => '{1}loron ida|loron :count',
26 'hour' => 'oras :count',
27 'a_hour' => '{1}oras ida|oras :count',
28 'minute' => 'minutu :count',
29 'a_minute' => '{1}minutu ida|minutu :count',
30 'second' => 'segundu :count',
31 'a_second' => '{1}segundu balun|segundu :count',
32 'ago' => ':time liuba',
33 'from_now' => 'iha :time',
34 'diff_yesterday' => 'Horiseik',
35 'diff_yesterday_regexp' => 'Horiseik(?:\\s+iha)?',
36 'diff_today' => 'Ohin',
37 'diff_today_regexp' => 'Ohin(?:\\s+iha)?',
38 'diff_tomorrow' => 'Aban',
39 'diff_tomorrow_regexp' => 'Aban(?:\\s+iha)?',
40 'formats' => [
41 'LT' => 'HH:mm',
42 'LTS' => 'HH:mm:ss',
43 'L' => 'DD/MM/YYYY',
44 'LL' => 'D MMMM YYYY',
45 'LLL' => 'D MMMM YYYY HH:mm',
46 'LLLL' => 'dddd, D MMMM YYYY HH:mm',
47 ],
48 'calendar' => [
49 'sameDay' => '[Ohin iha] LT',
50 'nextDay' => '[Aban iha] LT',
51 'nextWeek' => 'dddd [iha] LT',
52 'lastDay' => '[Horiseik iha] LT',
53 'lastWeek' => 'dddd [semana kotuk] [iha] LT',
54 'sameElse' => 'L',
55 ],
56 'ordinal' => ':numberº',
57 'months' => ['Janeiru', 'Fevereiru', 'Marsu', 'Abril', 'Maiu', 'Juñu', 'Jullu', 'Agustu', 'Setembru', 'Outubru', 'Novembru', 'Dezembru'],
58 'months_short' => ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],
59 'weekdays' => ['Domingu', 'Segunda', 'Tersa', 'Kuarta', 'Kinta', 'Sesta', 'Sabadu'],
60 'weekdays_short' => ['Dom', 'Seg', 'Ters', 'Kua', 'Kint', 'Sest', 'Sab'],
61 'weekdays_min' => ['Do', 'Seg', 'Te', 'Ku', 'Ki', 'Ses', 'Sa'],
62 'first_day_of_week' => 1,
63 'day_of_first_week_of_year' => 4,
64];