PHP Classes

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

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   vendor/nesbot/carbon/src/Carbon/Lang/prg.php   Download  
File: vendor/nesbot/carbon/src/Carbon/Lang/prg.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: 1,674 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.
 */
return array_replace_recursive(require __DIR__.'/en.php', [
   
'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
   
'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
   
'first_day_of_week' => 1,
   
'formats' => [
       
'LT' => 'HH:mm',
       
'LTS' => 'HH:mm:ss',
       
'L' => 'YYYY-MM-dd',
       
'LL' => 'YYYY MMM D',
       
'LLL' => 'YYYY MMMM D HH:mm',
       
'LLLL' => 'YYYY MMMM D, dddd HH:mm',
    ],

   
'year' => ':count meta',
   
'y' => ':count meta',
   
'a_year' => ':count meta',

   
'month' => ':count m?niks', // less reliable
   
'm' => ':count m?niks', // less reliable
   
'a_month' => ':count m?niks', // less reliable

   
'week' => ':count sawa?tin', // less reliable
   
'w' => ':count sawa?tin', // less reliable
   
'a_week' => ':count sawa?tin', // less reliable

   
'day' => ':count di',
   
'd' => ':count di',
   
'a_day' => ':count di',

   
'hour' => ':count brukt?t', // less reliable
   
'h' => ':count brukt?t', // less reliable
   
'a_hour' => ':count brukt?t', // less reliable

   
'minute' => ':count l?kuts', // less reliable
   
'min' => ':count l?kuts', // less reliable
   
'a_minute' => ':count l?kuts', // less reliable

   
'second' => ':count kitan', // less reliable
   
's' => ':count kitan', // less reliable
   
'a_second' => ':count kitan', // less reliable
]);