<?php 
 
/** 
 * This file is part of the Carbon package. 
 * 
 * (c) Brian Nesbitt <[email protected]> 
 * 
 * For the full copyright and license information, please view the LICENSE 
 * file that was distributed with this source code. 
 */ 
 
/** 
 * Authors: 
 * - Information from Michael Wolf Andrzej Krzysztofowicz [email protected] 
 */ 
return array_replace_recursive(require __DIR__.'/en.php', [ 
    'formats' => [ 
        'LT' => 'HH:mm', 
        'LTS' => 'HH:mm:ss', 
        'L' => 'DD.MM.YYYY', 
        'LL' => 'DD. MMMM YYYY', 
        'LLL' => 'DD. MMMM, HH:mm [hod?.]', 
        'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [hod?.]', 
    ], 
    'months' => ['januara', 'februara', 'm?rca', 'apryla', 'meje', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'], 
    'months_short' => ['Jan', 'Feb', 'M?r', 'Apr', 'Mej', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'], 
    'weekdays' => ['Njed?ela', 'Pónd?ela', 'Wutora', 'Srjeda', '?tvórtk', 'Pjatk', 'Sobota'], 
    'weekdays_short' => ['Nj', 'Pó', 'Wu', 'Sr', '?t', 'Pj', 'So'], 
    'weekdays_min' => ['Nj', 'Pó', 'Wu', 'Sr', '?t', 'Pj', 'So'], 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 4, 
 
    'year' => ':count l?to', 
    'y' => ':count l?to', 
    'a_year' => ':count l?to', 
 
    'month' => ':count m?sac', 
    'm' => ':count m?sac', 
    'a_month' => ':count m?sac', 
 
    'week' => ':count tyd?e?', 
    'w' => ':count tyd?e?', 
    'a_week' => ':count tyd?e?', 
 
    'day' => ':count d?e?', 
    'd' => ':count d?e?', 
    'a_day' => ':count d?e?', 
 
    'hour' => ':count hod?ina', 
    'h' => ':count hod?ina', 
    'a_hour' => ':count hod?ina', 
 
    'minute' => ':count chwila', 
    'min' => ':count chwila', 
    'a_minute' => ':count chwila', 
 
    'second' => ':count druhi', 
    's' => ':count druhi', 
    'a_second' => ':count druhi', 
]); 
 
 |