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
|
<?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. */
/** * Translation messages. See http://symfony.com/doc/current/book/translation.html * for possible formats. */
return array( 'year' => '1 metus|:count metus|:count metų', 'month' => '1 menesį|:count menesius|:count menesių', 'week' => '1 savaitę|:count savaites|:count savaičių', 'day' => '1 dieną|:count dienas|:count dienų', 'hour' => '1 valandą|:count valandas|:count valandų', 'minute' => '1 minutę|:count minutes|:count minučių', 'second' => '1 sekundę|:count sekundes|:count sekundžių', 'ago' => 'prieš :time', 'from_now' => 'už :time', 'after' => 'po :time', 'before' => ':time nuo dabar', );
|