/var/www/hkosl.com/demo_google/application/vendor/nesbot/carbon/src/Carbon/Lang/de.php


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
44
45
46
<?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 Jahr|:count Jahre',
    
'y' => ':countJ|:countJ',
    
'month' => ':count Monat|:count Monate',
    
'm' => ':countMon|:countMon',
    
'week' => ':count Woche|:count Wochen',
    
'w' => ':countWo|:countWo',
    
'day' => ':count Tag|:count Tage',
    
'd' => ':countTg|:countTg',
    
'hour' => ':count Stunde|:count Stunden',
    
'h' => ':countStd|:countStd',
    
'minute' => ':count Minute|:count Minuten',
    
'min' => ':countMin|:countMin',
    
'second' => ':count Sekunde|:count Sekunden',
    
's' => ':countSek|:countSek',
    
'ago' => 'vor :time',
    
'from_now' => 'in :time',
    
'after' => ':time später',
    
'before' => ':time zuvor',

    
'year_from_now' => ':count Jahr|:count Jahren',
    
'month_from_now' => ':count Monat|:count Monaten',
    
'week_from_now' => ':count Woche|:count Wochen',
    
'day_from_now' => ':count Tag|:count Tagen',
    
'year_ago' => ':count Jahr|:count Jahren',
    
'month_ago' => ':count Monat|:count Monaten',
    
'week_ago' => ':count Woche|:count Wochen',
    
'day_ago' => ':count Tag|:count Tagen',

    
'diff_now' => 'Gerade eben',
    
'diff_yesterday' => 'Gestern',
    
'diff_tomorrow' => 'Heute',
    
'diff_before_yesterday' => 'Vorgestern',
    
'diff_after_tomorrow' => 'Übermorgen',
);