1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
/* * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */
return array( 'year' => ':count ano|:count anos', 'y' => ':counta|:counta', 'month' => ':count mês|:count meses', 'm' => ':countm|:countm', 'week' => ':count semana|:count semanas', 'w' => ':countsem|:countsem', 'day' => ':count dia|:count dias', 'd' => ':countd|:countd', 'hour' => ':count hora|:count horas', 'h' => ':counth|:counth', 'minute' => ':count minuto|:count minutos', 'min' => ':countmin|:countmin', 'second' => ':count segundo|:count segundos', 's' => ':counts|:counts', 'ago' => 'há :time', 'from_now' => 'em :time', 'after' => 'após :time', 'before' => ':time atrás', 'diff_now' => 'agora', 'diff_yesterday' => 'ontem', 'diff_tomorrow' => 'amanhã', 'diff_before_yesterday' => 'anteontem', 'diff_after_tomorrow' => 'depois de amanhã', 'period_recurrences' => 'uma|:count vez', 'period_interval' => 'toda :interval', 'period_start_date' => 'de :date', 'period_end_date' => 'até :date', );
|