| 
<?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:
 * - Philippe Vaucher
 * - Martin Suja
 * - Tsutomu Kuroda
 * - tjku
 * - Max Melentiev
 * - Juanito Fatas
 * - Ivan Stana
 * - Akira Matsuda
 * - Christopher Dell
 * - James McKinney
 * - Enrique Vidal
 * - Simone Carletti
 * - Aaron Patterson
 * - Jozef Fulop
 * - Nicolás Hock Isaza
 * - Tom Hughes
 * - Simon Hürlimann (CyT)
 * - jofi
 * - Jakub ADAMEC
 * - Marek Adamický
 */
 return [
 'year' => 'rok|:count roky|:count rokov',
 'y' => ':count r',
 'month' => 'mesiac|:count mesiace|:count mesiacov',
 'm' => ':count m',
 'week' => 'tý?de?|:count tý?dne|:count tý?d?ov',
 'w' => ':count t',
 'day' => 'de?|:count dni|:count dní',
 'd' => ':count d',
 'hour' => 'hodinu|:count hodiny|:count hodín',
 'h' => ':count h',
 'minute' => 'minútu|:count minúty|:count minút',
 'min' => ':count min',
 'second' => 'sekundu|:count sekundy|:count sekúnd',
 's' => ':count s',
 'ago' => 'pred :time',
 'from_now' => 'za :time',
 'after' => 'o :time neskôr',
 'before' => ':time predtým',
 'year_ago' => 'rokom|:count rokmi|:count rokmi',
 'month_ago' => 'mesiacom|:count mesiacmi|:count mesiacmi',
 'week_ago' => 'tý?d?om|:count tý?d?ami|:count tý?d?ami',
 'day_ago' => 'd?om|:count d?ami|:count d?ami',
 'hour_ago' => 'hodinou|:count hodinami|:count hodinami',
 'minute_ago' => 'minútou|:count minútami|:count minútami',
 'second_ago' => 'sekundou|:count sekundami|:count sekundami',
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 4,
 'list' => [', ', ' a '],
 'formats' => [
 'LT' => 'HH:mm',
 'LTS' => 'HH:mm:ss',
 'L' => 'DD.MM.YYYY',
 'LL' => 'DD. MMMM YYYY',
 'LLL' => 'D. M. HH:mm',
 'LLLL' => 'dddd D. MMMM YYYY HH:mm',
 ],
 'weekdays' => ['nede?a', 'pondelok', 'utorok', 'streda', '?tvrtok', 'piatok', 'sobota'],
 'weekdays_short' => ['ne', 'po', 'ut', 'st', '?t', 'pi', 'so'],
 'weekdays_min' => ['ne', 'po', 'ut', 'st', '?t', 'pi', 'so'],
 'months' => ['január', 'február', 'marec', 'apríl', 'máj', 'jún', 'júl', 'august', 'september', 'október', 'november', 'december'],
 'months_short' => ['jan', 'feb', 'mar', 'apr', 'máj', 'jún', 'júl', 'aug', 'sep', 'okt', 'nov', 'dec'],
 'meridiem' => ['dopoludnia', 'popoludní'],
 ];
 
 |