| 
<?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    [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 [gó?.]',
 'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [gó?.]',
 ],
 'months' => ['januara', 'februara', 'm?rca', 'apryla', 'maja', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'],
 'months_short' => ['Jan', 'Feb', 'M?r', 'Apr', 'Maj', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'],
 'weekdays' => ['Nje?ela', 'Pónje?ele', 'Wa?tora', 'Srjoda', 'Stwórtk', 'P?tk', 'Sobota'],
 'weekdays_short' => ['Nj', 'Pó', 'Wa', 'Sr', 'St', 'P?', 'So'],
 'weekdays_min' => ['Nj', 'Pó', 'Wa', 'Sr', 'St', 'P?', '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 mjasec',
 'm' => ':count mjasec',
 'a_month' => ':count mjasec',
 
 'week' => ':count ty?e?',
 'w' => ':count ty?e?',
 'a_week' => ':count ty?e?',
 
 'day' => ':count ?e?',
 'd' => ':count ?e?',
 'a_day' => ':count ?e?',
 
 'hour' => ':count gó?ina',
 'h' => ':count gó?ina',
 'a_hour' => ':count gó?ina',
 
 'minute' => ':count minuta',
 'min' => ':count minuta',
 'a_minute' => ':count minuta',
 
 'second' => ':count drugi',
 's' => ':count drugi',
 'a_second' => ':count drugi',
 ]);
 
 |