PHP Classes

File: vendor/nesbot/carbon/src/Carbon/Lang/he.php

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   vendor/nesbot/carbon/src/Carbon/Lang/he.php   Download  
File: vendor/nesbot/carbon/src/Carbon/Lang/he.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Chatto PHP Websocket Chat System
Websocket based chat system using Ratchet library
Author: By
Last change:
Date: 3 years ago
Size: 2,968 bytes
 

Contents

Class file image Download
<?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:
 * - Daniel Cohen Gindi
 * - JD Isaacks
 * - Itai Nathaniel
 * - GabMic
 */
return [
   
'year' => '???|{2}??????|:count ????',
   
'y' => '???|{2}??????|:count ????',
   
'month' => '????|{2}???????|:count ??????',
   
'm' => '????|{2}???????|:count ??????',
   
'week' => '????|{2}???????|:count ??????',
   
'w' => '????|{2}???????|:count ??????',
   
'day' => '???|{2}??????|:count ????',
   
'd' => '???|{2}??????|:count ????',
   
'hour' => '???|{2}??????|:count ????',
   
'h' => '???|{2}??????|:count ????',
   
'minute' => '???|{2}??? ????|:count ????',
   
'min' => '???|{2}??? ????|:count ????',
   
'second' => '?????|:count ?????',
   
'a_second' => '??? ?????|:count ?????',
   
's' => '????|:count ?????',
   
'ago' => '???? :time',
   
'from_now' => '???? :time ??????',
   
'after' => '???? :time',
   
'before' => '???? :time',
   
'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',
    ],
   
'meridiem' => function ($hour, $minute, $isLower) {
        if (
$hour < 5) {
            return
'????? ????';
        }
        if (
$hour < 10) {
            return
'?????';
        }
        if (
$hour < 12) {
            return
$isLower ? '????"?' : '???? ???????';
        }
        if (
$hour < 18) {
            return
$isLower ? '???"?' : '???? ???????';
        }

        return
'????';
    },
   
'months' => ['?????', '??????', '???', '?????', '???', '????', '????', '??????', '??????', '???????', '??????', '?????'],
   
'months_short' => ['????', '????', '???', '????', '???', '????', '????', '????', '????', '????', '????', '????'],
   
'weekdays' => ['?????', '???', '?????', '?????', '?????', '????', '???'],
   
'weekdays_short' => ['??', '??', '??', '??', '??', '??', '??'],
   
'weekdays_min' => ['?', '?', '?', '?', '?', '?', '?'],
   
'list' => [', ', ' ? -'],
   
'weekend' => [5, 6],
];