blob: fd0f6b3e9aebf422cd16934f5fd151d5151433e4 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - Philippe Vaucher
15 * - Martin Suja
16 * - Tsutomu Kuroda
17 * - tjku
18 * - Max Melentiev
19 * - Juanito Fatas
20 * - Ivan Stana
21 * - Akira Matsuda
22 * - Christopher Dell
23 * - James McKinney
24 * - Enrique Vidal
25 * - Simone Carletti
26 * - Aaron Patterson
27 * - Jozef Fulop
28 * - Nicolás Hock Isaza
29 * - Tom Hughes
30 * - Simon Hürlimann (CyT)
31 * - jofi
32 * - Jakub ADAMEC
33 * - Marek Adamický
34 */
35return [
36 'year' => 'rok|:count roky|:count rokov',
37 'y' => ':count r',
38 'month' => 'mesiac|:count mesiace|:count mesiacov',
39 'm' => ':count m',
40 'week' => 'týždeň|:count týždne|:count týždňov',
41 'w' => ':count t',
42 'day' => 'deň|:count dni|:count dní',
43 'd' => ':count d',
44 'hour' => 'hodinu|:count hodiny|:count hodín',
45 'h' => ':count h',
46 'minute' => 'minútu|:count minúty|:count minút',
47 'min' => ':count min',
48 'second' => 'sekundu|:count sekundy|:count sekúnd',
49 's' => ':count s',
50 'ago' => 'pred :time',
51 'from_now' => 'za :time',
52 'after' => 'o :time neskôr',
53 'before' => ':time predtým',
54 'year_ago' => 'rokom|:count rokmi|:count rokmi',
55 'month_ago' => 'mesiacom|:count mesiacmi|:count mesiacmi',
56 'week_ago' => 'týždňom|:count týždňami|:count týždňami',
57 'day_ago' => 'dňom|:count dňami|:count dňami',
58 'hour_ago' => 'hodinou|:count hodinami|:count hodinami',
59 'minute_ago' => 'minútou|:count minútami|:count minútami',
60 'second_ago' => 'sekundou|:count sekundami|:count sekundami',
61 'first_day_of_week' => 1,
62 'day_of_first_week_of_year' => 4,
63 'list' => [', ', ' a '],
64 'diff_now' => 'teraz',
65 'diff_yesterday' => 'včera',
66 'diff_tomorrow' => 'zajtra',
67 'formats' => [
68 'LT' => 'HH:mm',
69 'LTS' => 'HH:mm:ss',
70 'L' => 'DD.MM.YYYY',
71 'LL' => 'DD. MMMM YYYY',
72 'LLL' => 'D. M. HH:mm',
73 'LLLL' => 'dddd D. MMMM YYYY HH:mm',
74 ],
75 'weekdays' => ['nedeľa', 'pondelok', 'utorok', 'streda', 'štvrtok', 'piatok', 'sobota'],
76 'weekdays_short' => ['ne', 'po', 'ut', 'st', 'št', 'pi', 'so'],
77 'weekdays_min' => ['ne', 'po', 'ut', 'st', 'št', 'pi', 'so'],
78 'months' => ['január', 'február', 'marec', 'apríl', 'máj', 'jún', 'júl', 'august', 'september', 'október', 'november', 'december'],
79 'months_short' => ['jan', 'feb', 'mar', 'apr', 'máj', 'jún', 'júl', 'aug', 'sep', 'okt', 'nov', 'dec'],
80 'meridiem' => ['dopoludnia', 'popoludní'],
81];