Blame view

public/vendor/nesbot/carbon/src/Carbon/Lang/hy.php 3.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  <?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:
   * - mhamlet
   */
  return [
      'year' => ':count տարի',
      'a_year' => 'տարի|:count տարի',
      'y' => ':countտ',
      'month' => ':count ամիս',
      'a_month' => 'ամիս|:count ամիս',
      'm' => ':countամ',
      'week' => ':count շաբաթ',
      'a_week' => 'շաբաթ|:count շաբաթ',
      'w' => ':countշ',
      'day' => ':count օր',
      'a_day' => 'օր|:count օր',
      'd' => ':countօր',
      'hour' => ':count ժամ',
      'a_hour' => 'ժամ|:count ժամ',
      'h' => ':countժ',
      'minute' => ':count րոպե',
      'a_minute' => 'րոպե|:count րոպե',
      'min' => ':countր',
      'second' => ':count վայրկյան',
      'a_second' => 'մի քանի վայրկյան|:count վայրկյան',
      's' => ':countվրկ',
      'ago' => ':time առաջ',
      'from_now' => ':timeից',
      'after' => ':time հետո',
      'before' => ':time առաջ',
      'diff_now' => 'հիմա',
      'diff_today' => 'այսօր',
      'diff_yesterday' => 'երեկ',
      'diff_tomorrow' => 'վաղը',
      'formats' => [
          'LT' => 'HH:mm',
          'LTS' => 'HH:mm:ss',
          'L' => 'DD.MM.YYYY',
          'LL' => 'D MMMM YYYY թ.',
          'LLL' => 'D MMMM YYYY թ., HH:mm',
          'LLLL' => 'dddd, D MMMM YYYY թ., HH:mm',
      ],
      'calendar' => [
          'sameDay' => '[այսօր] LT',
          'nextDay' => '[վաղը] LT',
          'nextWeek' => 'dddd [օրը ժամը] LT',
          'lastDay' => '[երեկ] LT',
          'lastWeek' => '[անցած] dddd [օրը ժամը] LT',
          'sameElse' => 'L',
      ],
      'ordinal' => function ($number, $period) {
          switch ($period) {
              case 'DDD':
              case 'w':
              case 'W':
              case 'DDDo':
                  return $number.($number === 1 ? '-ին' : '-րդ');
              default:
                  return $number;
          }
      },
      'meridiem' => function ($hour) {
          if ($hour < 4) {
              return 'գիշերվա';
          }
          if ($hour < 12) {
              return 'առավոտվա';
          }
          if ($hour < 17) {
              return 'ցերեկվա';
          }
  
          return 'երեկոյան';
      },
      'months' => ['հունվարի', 'փետրվարի', 'մարտի', 'ապրիլի', 'մայիսի', 'հունիսի', 'հուլիսի', 'օգոստոսի', 'սեպտեմբերի', 'հոկտեմբերի', 'նոյեմբերի', 'դեկտեմբերի'],
      'months_standalone' => ['հունվար', 'փետրվար', 'մարտ', 'ապրիլ', 'մայիս', 'հունիս', 'հուլիս', 'օգոստոս', 'սեպտեմբեր', 'հոկտեմբեր', 'նոյեմբեր', 'դեկտեմբեր'],
      'months_short' => ['հնվ', 'փտր', 'մրտ', 'ապր', 'մյս', 'հնս', 'հլս', 'օգս', 'սպտ', 'հկտ', 'նմբ', 'դկտ'],
      'months_regexp' => '/(D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/',
      'weekdays' => ['կիրակի', 'երկուշաբթի', 'երեքշաբթի', 'չորեքշաբթի', 'հինգշաբթի', 'ուրբաթ', 'շաբաթ'],
      'weekdays_short' => ['կրկ', 'երկ', 'երք', 'չրք', 'հնգ', 'ուրբ', 'շբթ'],
      'weekdays_min' => ['կրկ', 'երկ', 'երք', 'չրք', 'հնգ', 'ուրբ', 'շբթ'],
      'list' => [', ', ' եւ '],
      'first_day_of_week' => 1,
  ];