Blame view

public/vendor/nesbot/carbon/src/Carbon/Lang/ro.php 2.77 KB
86143e36f   Андрей Ларионов   Коммит вторник
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  <?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.
   */
  
  /*
   * Authors:
   * - Josh Soref
   * - JD Isaacks
   * - Cătălin Georgescu
   * - Valentin Ivaşcu (oriceon)
   */
  return [
      'year' => ':count an|:count ani|:count ani',
      'a_year' => 'un an|:count ani|:count ani',
      'y' => ':count a.',
      'month' => ':count lună|:count luni|:count luni',
      'a_month' => 'o lună|:count luni|:count luni',
      'm' => ':count l.',
      'week' => ':count săptămână|:count săptămâni|:count săptămâni',
      'a_week' => 'o săptămână|:count săptămâni|:count săptămâni',
      'w' => ':count săp.',
      'day' => ':count zi|:count zile|:count zile',
      'a_day' => 'o zi|:count zile|:count zile',
      'd' => ':count z.',
      'hour' => ':count oră|:count ore|:count ore',
      'a_hour' => 'o oră|:count ore|:count ore',
      'h' => ':count o.',
      'minute' => ':count minut|:count minute|:count minute',
      'a_minute' => 'un minut|:count minute|:count minute',
      'min' => ':count m.',
      'second' => ':count secundă|:count secunde|:count secunde',
      'a_second' => 'câteva secunde|:count secunde|:count secunde',
      's' => ':count sec.',
      'ago' => ':time în urmă',
      'from_now' => 'peste :time',
      'after' => 'peste :time',
      'before' => 'acum :time',
      'diff_now' => 'acum',
      'diff_today' => 'azi',
      'diff_today_regexp' => 'azi(?:\\s+la)?',
      'diff_yesterday' => 'ieri',
      'diff_yesterday_regexp' => 'ieri(?:\\s+la)?',
      'diff_tomorrow' => 'mâine',
      'diff_tomorrow_regexp' => 'mâine(?:\\s+la)?',
      'formats' => [
          'LT' => 'H:mm',
          'LTS' => 'H:mm:ss',
          'L' => 'DD.MM.YYYY',
          'LL' => 'D MMMM YYYY',
          'LLL' => 'D MMMM YYYY H:mm',
          'LLLL' => 'dddd, D MMMM YYYY H:mm',
      ],
      'calendar' => [
          'sameDay' => '[azi la] LT',
          'nextDay' => '[mâine la] LT',
          'nextWeek' => 'dddd [la] LT',
          'lastDay' => '[ieri la] LT',
          'lastWeek' => '[fosta] dddd [la] LT',
          'sameElse' => 'L',
      ],
      'months' => ['ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie', 'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'],
      'months_short' => ['ian.', 'feb.', 'mar.', 'apr.', 'mai', 'iun.', 'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'],
      'weekdays' => ['duminică', 'luni', 'marți', 'miercuri', 'joi', 'vineri', 'sâmbătă'],
      'weekdays_short' => ['dum', 'lun', 'mar', 'mie', 'joi', 'vin', 'sâm'],
      'weekdays_min' => ['du', 'lu', 'ma', 'mi', 'jo', 'vi', 'sâ'],
      'first_day_of_week' => 1,
      'day_of_first_week_of_year' => 1,
      'list' => [', ', ' și '],
      'meridiem' => ['a.m.', 'p.m.'],
  ];