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
41
42
43
|
<?php /* * This file is part of the Carbon package. * * (c) Viesturs Kavacs WWW: kavacky.lv * * 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' => '0 gadiem|:count gada|:count gadiem', 'month' => '0 mēnešiem|:count mēneša|:count mēnešiem', 'week' => '0 nedēļām|:count nedēļas|:count nedēļām', 'day' => '0 dienām|:count dienas|:count dienām', 'hour' => '0 stundām|:count stundas|:count stundām', 'minute' => '0 minūtēm|:count minūtes|:count minūtēm', 'second' => '0 sekundēm|:count sekundes|:count sekundēm', 'ago' => 'pirms :time', 'from_now' => 'pēc :time', 'after' => ':time vēlāk', 'before' => ':time pirms',
'year_after' => '0 gadus|:count gadu|:count gadus', 'month_after' => '0 mēnešus|:count mēnesi|:count mēnešus', 'week_after' => '0 nedēļas|:count nedēļu|:count nedēļas', 'day_after' => '0 dienas|:count dienu|:count dienas', 'hour_after' => '0 stundas|:count stundu|:count stundas', 'minute_after' => '0 minūtes|:count minūti|:count minūtes', 'second_after' => '0 sekundes|:count sekundi|:count sekundes',
'year_before' => '0 gadus|:count gadu|:count gadus', 'month_before' => '0 mēnešus|:count mēnesi|:count mēnešus', 'week_before' => '0 nedēļas|:count nedēļu|:count nedēļas', 'day_before' => '0 dienas|:count dienu|:count dienas', 'hour_before' => '0 stundas|:count stundu|:count stundas', 'minute_before' => '0 minūtes|:count minūti|:count minūtes', 'second_before' => '0 sekundes|:count sekundi|:count sekundes', );
|